George Djabarov / Mbed OS mbed-os-example-mesh-minimal
Revision:
1:24cff46332de
Parent:
0:bde1843b9885
Child:
4:567d72fb3d84
--- a/main.cpp	Mon Jul 25 14:08:26 2016 +0300
+++ b/main.cpp	Thu Jul 28 23:14:17 2016 +0100
@@ -8,12 +8,12 @@
 int main()
 {
     output.baud(115200);
-    output.printf("\r\n\r\nConnecting...\r\n");
+    printf("\r\n\r\nConnecting...\r\n");
 
     if (mesh.connect()) {
-        output.printf("Connection failed!\r\n");
+        printf("Connection failed!\r\n");
         return -1;
     }
 
-    output.printf("connected. IP = %s\r\n", mesh.get_ip_address());
-}
\ No newline at end of file
+    printf("connected. IP = %s\r\n", mesh.get_ip_address());
+}