Official reference client implementation for Cumulocity SmartREST on u-blox C027.

Dependencies:   C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed

Fork of MbedSmartRestMain by Vincent Wochnik

Revision:
67:c360a2b2c948
Parent:
66:31c754c36ed7
Child:
68:0dc778a16d0d
--- a/MbedAgent.h	Thu Oct 30 14:46:22 2014 +0000
+++ b/MbedAgent.h	Sun Nov 30 19:34:49 2014 +0000
@@ -7,6 +7,7 @@
 #include "RtosSmartRest.h"
 #include "SmartRestTemplate.h"
 #include "DeviceInfo.h"
+#include "DeviceMemory.h"
 #include "DeviceBootstrap.h"
 #include "DeviceIntegration.h"
 #include "SignalQualityMeasurement.h"
@@ -24,7 +25,7 @@
 class MbedAgent
 {
 public:
-    MbedAgent(DeviceIO&, MDMSerial&, DeviceInfo&);
+    MbedAgent(DeviceIO&, MDMSerial&, DeviceInfo&, DeviceMemory&);
     
     bool init();
     bool run();
@@ -36,6 +37,7 @@
     DeviceIO& _io;
     MDMSerial& _mdm;
     DeviceInfo& _deviceInfo;
+    DeviceMemory& _deviceMemory;
     RtosSmartRest _client;
     SmartRestTemplate _tpl;
     DeviceBootstrap _bootstrap;