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:
97:ea056f6be2e8
Parent:
77:f6717e4eccc4
Child:
108:f1ee3e1eb126
--- a/DeviceInfo.h	Mon Apr 27 10:50:21 2015 +0000
+++ b/DeviceInfo.h	Mon Apr 27 13:02:50 2015 +0000
@@ -1,14 +1,12 @@
 #ifndef DEVICEINFO_H
 #define DEVICEINFO_H
 
-#include <stddef.h>
-#include <stdint.h>
 #include "MDM.h"
 
 class DeviceInfo
 {
 public:
-    DeviceInfo(MDMSerial& mdm, MDMParser::DevStatus& devStatus);
+    DeviceInfo(MDMParser::DevStatus& devStatus);
     
     typedef struct {
         int rssi;  // RSSI in dBm
@@ -25,7 +23,6 @@
     bool refreshNetStatus();
 
 private:
-    MDMSerial& _mdm;
     MDMParser::DevStatus _devStatus;
     MDMParser::NetStatus _netStatus;
     char _cellId[9];