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:
99:e369fc75c000
Parent:
94:61d44636f020
Child:
107:fc5f25f0e0d5
--- a/operation/OperationSupport.h	Mon Apr 27 13:30:21 2015 +0000
+++ b/operation/OperationSupport.h	Thu May 07 09:57:55 2015 +0000
@@ -8,9 +8,8 @@
 class OperationSupport
 {
 public:
-    OperationSupport(SmartRest& client, SmartRestTemplate& tpl,
-    long& deviceId, OperationPool& pool):
-    _init(false), _firstRun(true), _deviceId(deviceId), _tpl(tpl),
+    OperationSupport(SmartRest& client, SmartRestTemplate& tpl, OperationPool& pool):
+    _init(false), _firstRun(true), _tpl(tpl),
     _client(client), opool(pool) {}
     bool init();
     bool run();
@@ -23,7 +22,6 @@
 private:
     bool _init;
     bool _firstRun;
-    long& _deviceId;
     SmartRestTemplate& _tpl;
     SmartRest& _client;
     OperationPool& opool;