Added monitoring feature of ESP8266's UART

Dependents:   ESP8266_W7500_Example DualNetworkInterface-Basic

Fork of ESP8266Interface by ESP8266

Revision:
25:8e2b04473830
Parent:
24:03585a13ff3b
Child:
26:0d5bcb3903e2
--- a/ESP8266/ESP8266.cpp	Thu Dec 11 23:24:55 2014 +0000
+++ b/ESP8266/ESP8266.cpp	Tue Dec 30 00:16:21 2014 +0000
@@ -50,7 +50,7 @@
 {
     memset(&state, 0, sizeof(state));
 
-    // change all ' ' in '$' in the ssid and the passphrase
+/*    // 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] == ' ')
@@ -61,6 +61,7 @@
         if (this->phrase[i] == ' ')
             this->phrase[i] = '$';
     }
+*/
 
     inst = this;
     attach_rx(false);