u-blox / Mbed 2 deprecated MbedSmartRestMain

Dependencies:   C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed

Fork of MbedSmartRestMain by Cumulocity Official

Revision:
21:f74b80a0cb38
Parent:
20:ef9cc1b42e9d
Child:
22:3a595f7826af
--- a/io.cpp	Thu Feb 20 11:51:54 2014 +0000
+++ b/io.cpp	Thu Feb 20 11:57:18 2014 +0000
@@ -73,21 +73,21 @@
 {
     lcdDisplay.locate(0, 0);
     if ((rssi == 0) && (ber == 0))
-        lcdDisplay.printf("No signal\n");
+        lcdDisplay.printf("No signal                    \n");
     else
-        lcdDisplay.printf("RSSI: %d dBm  BER: %d %%\n", rssi, ber);
+        lcdDisplay.printf("RSSI: %d dBm  BER: %d %%    \n", rssi, ber);
 }
 
 void lcd_tenant(const char* tenant)
 {
     lcdDisplay.locate(0, 11);
-    lcdDisplay.printf("Tenant: %s\n", tenant);
+    lcdDisplay.printf("Tenant: %s                                        \n", tenant);
 }
 
 void lcd_status(const char* status)
 {
     lcdDisplay.locate(0, 22);
-    lcdDisplay.printf("%s\n", status);
+    lcdDisplay.printf("%s                                                                                \n", status);
 }
 
 void timer_callback(void const*)