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

Files at this revision

API Documentation at this revision

Comitter:
xinlei
Date:
Fri May 08 14:50:43 2015 +0000
Parent:
104:a3703ca4a4a4
Child:
106:c61f0d62b625
Commit message:
quick fix for file renaming.

Changed in this revision

DeviceBootstrap.cpp Show annotated file Show diff for this revision Revisions of this file
config/ConfigSync.cpp Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
operation/ControlParser.cpp Show annotated file Show diff for this revision Revisions of this file
operation/ControlParser.h Show annotated file Show diff for this revision Revisions of this file
--- a/DeviceBootstrap.cpp	Fri May 08 13:15:29 2015 +0000
+++ b/DeviceBootstrap.cpp	Fri May 08 14:50:43 2015 +0000
@@ -3,7 +3,7 @@
 #include <string.h>
 #include "DeviceBootstrap.h"
 #include "rtos.h"
-#include "DeviceMemory.h"
+#include "Storage.h"
 #include "LCDDisplay.h"
 #include "ComposedRecord.h"
 #include "CharValue.h"
--- a/config/ConfigSync.cpp	Fri May 08 13:15:29 2015 +0000
+++ b/config/ConfigSync.cpp	Fri May 08 14:50:43 2015 +0000
@@ -1,5 +1,5 @@
 #include <stdio.h>
-#include "DeviceMemory.h"
+#include "Storage.h"
 #include "ConfigSync.h"
 #include "SmartRestConf.h"
 #include "logging.h"
--- a/main.cpp	Fri May 08 13:15:29 2015 +0000
+++ b/main.cpp	Fri May 08 14:50:43 2015 +0000
@@ -6,7 +6,7 @@
 #include "GPS.h"
 
 #include "DeviceInfo.h"
-#include "DeviceMemory.h"
+#include "Storage.h"
 #include "MbedAgent.h"
 #include "GPSTracker.h"
 #include "LCDDisplay.h"
--- a/mbed.bld	Fri May 08 13:15:29 2015 +0000
+++ b/mbed.bld	Fri May 08 14:50:43 2015 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/mbed_official/code/mbed/builds/487b796308b0
\ No newline at end of file
+http://mbed.org/users/mbed_official/code/mbed/builds/8ab26030e058
\ No newline at end of file
--- a/operation/ControlParser.cpp	Fri May 08 13:15:29 2015 +0000
+++ b/operation/ControlParser.cpp	Fri May 08 14:50:43 2015 +0000
@@ -1,7 +1,7 @@
 #include <stdio.h>
 #include <string.h>
 #include "ControlParser.h"
-#include "DeviceFeedback.h"
+#include "Peripheral.h"
 #include "LCDDisplay.h"
 #include "logging.h"
 
--- a/operation/ControlParser.h	Fri May 08 13:15:29 2015 +0000
+++ b/operation/ControlParser.h	Fri May 08 14:50:43 2015 +0000
@@ -2,7 +2,6 @@
 #define CONTROLPARSER_H
 #include "Operation.h"
 #include "lex.h"
-#include "DeviceFeedback.h"
 #include "ConfigSync.h"
 
 enum BayeuxAdvice{ BA_RETRY, BA_HANDSHAKE, BA_NONE };