- Added setBaud() function - Added CheckNetworkStatus() function - Improved messaging system

Dependents:   IoT_Ex BatteryModelTester BatteryModelTester

Fork of WiflyInterface by Components

Revision:
14:5a9561156acc
Parent:
13:8846f12fa277
Child:
25:36b2d76ca8d9
--- a/WiflyInterface.cpp	Thu Feb 18 12:12:30 2016 +0000
+++ b/WiflyInterface.cpp	Sat Feb 20 16:39:09 2016 +0000
@@ -30,9 +30,9 @@
 int WiflyInterface::connect()
 {
     // join() returns a boolean, it does not like it all the time, thus casting it as int
-    int i = (int) join();
-    pc.printf("Join() complete. %d\n\r",i);
-    return i;
+    int ii = (int) join();
+    pc.printf(">>> join() complete. %d\n\r",ii);
+    return ii;
 }
 
 int WiflyInterface::disconnect()