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.
Dependents: IOT-Websocket_Wifly_HelloWorld WiFly_NSDL_HelloWorld IOT-Project-LED-ControlTelnet IOT-Project-Wifly-Xively ... more
Fork of WiflyInterface by
Diff: Socket/TCPSocketServer.cpp
- Revision:
- 4:0bcec6272784
- Parent:
- 3:9aa05e19c62e
--- a/Socket/TCPSocketServer.cpp Thu Dec 20 10:37:52 2012 +0000
+++ b/Socket/TCPSocketServer.cpp Thu Dec 20 15:08:58 2012 +0000
@@ -41,8 +41,13 @@
wifi->reboot();
// connect the network
- if (!wifi->sendCommand("join\r", "Associated", NULL, 5000))
- return -1;
+ if (wifi->isDHCP()) {
+ if (!wifi->sendCommand("join\r", "DHCP=ON", NULL, 10000))
+ return -1;
+ } else {
+ if (!wifi->sendCommand("join\r", "Associated", NULL, 10000))
+ return -1;
+ }
// exit
wifi->exit();

Roving Networks WiFly RN-171-XV