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.
Diff: main.cpp
- Revision:
- 21:e356e039f917
- Parent:
- 13:4bea5334b419
- Child:
- 26:348eec457e58
--- a/main.cpp Fri Sep 14 12:30:21 2018 +0100
+++ b/main.cpp Thu Sep 27 13:30:25 2018 +0100
@@ -158,7 +158,11 @@
retcode = sock.open(iface);
if (retcode != NSAPI_ERROR_OK) {
+#if MBED_CONF_APP_SOCK_TYPE == TCP
+ print_function("TCPSocket.open() fails, code: %d\n", retcode);
+#else
print_function("UDPSocket.open() fails, code: %d\n", retcode);
+#endif
return -1;
}