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:
71:063c45e99578
Parent:
67:c360a2b2c948
Child:
72:c5709ae7b193
--- a/DeviceBootstrap.cpp	Tue Feb 10 20:52:13 2015 +0000
+++ b/DeviceBootstrap.cpp	Mon Feb 16 09:17:30 2015 +0000
@@ -64,7 +64,7 @@
     if (_client.setAuthorization(DEVICE_BOOTSTRAP_USERNAME, DEVICE_BOOTSTRAP_PASSWORD) != SMARTREST_SUCCESS)
         return false;
 
-    _io.lcdPrint("BOOTSTRAP", _deviceInfo.imei());
+    _io.lcdPrint("Bootstrap", _deviceInfo.imei());
     
     tries = 255;
     do {
@@ -99,12 +99,12 @@
                        recvdRecord.value(4).characterValue(),
                        recvdRecord.value(5).characterValue());
         
-        _io.lcdPrint("BOOTSTRAP SUCCESSFUL", _username, _password);
+        _io.lcdPrint("Bootstrap Success", _username, _password);
 
         return true;
     } while (--tries > 0);
 
-    _io.lcdPrint("BOOTSTRAP FAILURE");
+    _io.lcdPrint("Bootstrap Failure");
     return false;
 }