Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed
Fork of MbedSmartRestMain by
Diff: measurement/LocationUpdate.h
- Revision:
- 73:313975bfec96
- Parent:
- 71:063c45e99578
- Child:
- 82:ca7430f50b2b
diff -r c5709ae7b193 -r 313975bfec96 measurement/LocationUpdate.h
--- a/measurement/LocationUpdate.h Mon Feb 16 13:15:52 2015 +0000
+++ b/measurement/LocationUpdate.h Tue Feb 17 16:31:30 2015 +0000
@@ -4,11 +4,14 @@
#include "AbstractSmartRest.h"
#include "SmartRestTemplate.h"
#include "GPSTracker.h"
+#include "DeviceIO.h"
+#include "DeviceInfo.h"
+#include "DeviceBootstrap.h"
class LocationUpdate
{
public:
- LocationUpdate(AbstractSmartRest&, SmartRestTemplate&, long&, GPSTracker&);
+ LocationUpdate(AbstractSmartRest&, SmartRestTemplate&, long&, GPSTracker&, DeviceIO&, DeviceInfo&, DeviceBootstrap&);
bool init();
bool run();
@@ -21,6 +24,9 @@
GPSTracker& _gpsTracker;
float oldValues[3];
Timer sendingTimer;
+ DeviceIO& _io;
+ DeviceInfo& _deviceInfo;
+ DeviceBootstrap& _bootstrap;
};
#endif
\ No newline at end of file

Cumulocity