Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of ESP8266Interface by
Diff: Socket/Socket.cpp
- Revision:
- 21:690526f05fe6
- Parent:
- 13:41098c907200
- Child:
- 28:91e65e22e63a
diff -r d764237405c2 -r 690526f05fe6 Socket/Socket.cpp --- a/Socket/Socket.cpp Mon Dec 01 09:28:02 2014 +0000 +++ b/Socket/Socket.cpp Tue Dec 02 04:16:26 2014 +0000 @@ -19,6 +19,8 @@ #include "Socket.h" #include <cstring> +extern Serial pc; + Socket::Socket() : _blocking(true), _timeout(1500) { wifi = ESP8266::getInstance(); if (wifi == NULL) @@ -26,6 +28,7 @@ } void Socket::set_blocking(bool blocking, unsigned int timeout) { + pc.printf("set blocking: %d %d\r\n", blocking, timeout); _blocking = blocking; _timeout = timeout; }