GainSpan Wi-Fi library see: http://mbed.org/users/gsfan/notebook/gainspan_wifi/

Dependents:   GSwifi_httpd GSwifi_websocket GSwifi_tcpclient GSwifi_tcpserver ... more

Fork of GSwifi by gs fan

GainSpan Wi-Fi library

The GS1011 is an ultra low power 802.11b wireless module from GainSpan.

see: http://mbed.org/users/gsfan/notebook/gainspan_wifi/

/media/uploads/gsfan/gs_im_002.jpg /media/uploads/gsfan/gs1011m_2.jpg

ゲインスパン Wi-Fi モジュール ライブラリ

ゲインスパン社の低電力 Wi-Fiモジュール(無線LAN) GS1011 シリーズ用のライブラリです。

解説: http://mbed.org/users/gsfan/notebook/gainspan_wifi/

Revision:
31:0abdc584823d
Parent:
28:fbba4c58d14c
Child:
34:f5f40c92af00
--- a/GSwifi_sock.cpp	Tue Feb 26 03:31:20 2013 +0000
+++ b/GSwifi_sock.cpp	Tue Feb 26 06:05:11 2013 +0000
@@ -26,6 +26,7 @@
 
 
 void GSwifi::newSock (int cid, GSTYPE type, GSPROTOCOL pro) {
+    DBG("newSock %d\r\n", cid);
     _gs_sock[cid].type = type;
     _gs_sock[cid].protocol = pro;
     _gs_sock[cid].connect = true;
@@ -36,6 +37,7 @@
     }
     _gs_sock[cid].lcid = 0;
     _gs_sock[cid].received = false;
+    _gs_sock[cid].onGsReceive.detach();
 }
 
 int GSwifi::open (Host &host, GSPROTOCOL pro) {