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: ESP8266_MQTT_HelloWorld ESP8266_IFTTT_Test ECE_4180_Lab_4 websocketmbed ... more
Fork of ESP8266Interface by
Diff: Socket/Endpoint.cpp
- Revision:
- 16:3f0efaa57a12
- Parent:
- 13:41098c907200
- Child:
- 17:d11fa4c3ac65
diff -r 37a7a56a424f -r 3f0efaa57a12 Socket/Endpoint.cpp
--- a/Socket/Endpoint.cpp Sun Nov 30 21:56:03 2014 +0000
+++ b/Socket/Endpoint.cpp Mon Dec 01 06:22:00 2014 +0000
@@ -38,6 +38,8 @@
//Resolve DNS address or populate hard-coded IP address
ESP8266->gethostbyname(host, _ipAddress);
_port = port;
+ //Start the UDP Endpoint
+ ESP8266->startUDP(_ipAddress,_port);
return 0;
}

ESP8266-01