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.
Dependencies: DHT MQTT WIZnetInterface mbed-src
Fork of MQTTw7500 by
Revision 2:ec5ae99791da, committed 2012-07-31
- Comitter:
- emilmont
- Date:
- Tue Jul 31 11:51:28 2012 +0000
- Parent:
- 1:5cebe0e38cd2
- Child:
- 3:36fd3cfad85a
- Commit message:
- Add explicit setting of socket blocking/non-blocking mode and timeout
Changed in this revision
--- a/EthernetInterface.lib Wed Jul 25 15:43:24 2012 +0000 +++ b/EthernetInterface.lib Tue Jul 31 11:51:28 2012 +0000 @@ -1,1 +1,1 @@ -http://mbed.org/users/mbed_official/code/EthernetInterface/#fd9597f1b81b +http://mbed.org/users/mbed_official/code/EthernetInterface/#f1b8651f8f29
--- a/main.cpp Wed Jul 25 15:43:24 2012 +0000
+++ b/main.cpp Tue Jul 31 11:51:28 2012 +0000
@@ -15,14 +15,15 @@
printf("\nWait for new connection...\n");
TCPSocketConnection client;
server.accept(client);
+ client.set_blocking(false);
printf("Connection from: %s\n", client.get_address());
char buffer[256];
while (true) {
- int n = client.receive(buffer, 256, 3000);
+ int n = client.receive(buffer, 256);
if (n <= 0) break;
- client.send_all(buffer, n, 3000);
+ client.send_all(buffer, n);
if (n <= 0) break;
}
client.close();
--- a/mbed-rtos.lib Wed Jul 25 15:43:24 2012 +0000 +++ b/mbed-rtos.lib Tue Jul 31 11:51:28 2012 +0000 @@ -1,1 +1,1 @@ -http://mbed.org/users/mbed_official/code/mbed-rtos/#4238c328365e +http://mbed.org/users/mbed_official/code/mbed-rtos/#70bd33086f56
