TCPEchoServer for Murata Type-YD WiFi module

Dependencies:   PowerControl SNICInterface mbed-rtos mbed

Fork of TCPEchoServer by Toyomasa Watarai

mbed 上で動作する TCPEchoServer です(ムラタ製 TypeYDモジュール使用)。

ターミナルを接続して実行すると、割り当てられたIPアドレスが表示されます。 対向機から実行する Python スクリプトは、こちら です(IPアドレスを書き換えて使用して下さい)。

Files at this revision

API Documentation at this revision

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

EthernetInterface.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed-rtos.lib Show annotated file Show diff for this revision Revisions of this file
--- 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