Added monitoring feature of ESP8266's UART

Dependents:   ESP8266_W7500_Example DualNetworkInterface-Basic

Fork of ESP8266Interface by ESP8266

Revision:
48:03fd9333670d
Parent:
47:1f4dd0e91837
Child:
49:2c05d747bb91
--- a/ESP8266/ESP8266.cpp	Mon Jun 08 21:32:12 2015 +0000
+++ b/ESP8266/ESP8266.cpp	Wed Jun 10 15:47:33 2015 +0000
@@ -51,19 +51,9 @@
     INFO("Initializing ESP8266 object");
     memset(&state, 0, sizeof(state));
 
-    // change all ' ' in '$' in the ssid and the passphrase
+
     strcpy(this->ssid, ssid);
-    for (int i = 0; i < strlen(ssid); i++) {
-        if (this->ssid[i] == ' ')
-            this->ssid[i] = '$';
-    }
-    
     strcpy(this->phrase, phrase);
-    for (int i = 0; i < strlen(phrase); i++) {
-        if (this->phrase[i] == ' ')
-            this->phrase[i] = '$';
-    }
-
     inst = this;
     attach_rx(false);