Update ESP8266.h to increase size of ssid & phrase to Wifi standards of 32 & 64
Fork of ESP8266Interface by
Revision 49:e3d1b20ea0b7, committed 2016-04-02
- Comitter:
- br549
- Date:
- Sat Apr 02 14:58:43 2016 +0000
- Parent:
- 48:03fd9333670d
- Commit message:
- ESP8266.h->ssid[32],phrase[64] to match Wifi standard
Changed in this revision
ESP8266/ESP8266.h | Show annotated file Show diff for this revision Revisions of this file |
diff -r 03fd9333670d -r e3d1b20ea0b7 ESP8266/ESP8266.h --- a/ESP8266/ESP8266.h Wed Jun 10 15:47:33 2015 +0000 +++ b/ESP8266/ESP8266.h Sat Apr 02 14:58:43 2016 +0000 @@ -199,8 +199,8 @@ protected: RawSerial wifi; DigitalOut reset_pin; - char phrase[30]; - char ssid[30]; + char phrase[64]; + char ssid[32]; char ipString[20]; CircBuffer<char> buf_ESP8266;