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:
33:b5a5a1e6325f
Parent:
31:0abdc584823d
Child:
35:515ec79792d3
--- a/GSwifi.h	Tue Feb 26 07:39:58 2013 +0000
+++ b/GSwifi.h	Wed Mar 13 01:22:38 2013 +0000
@@ -40,8 +40,10 @@
 #elif defined(TARGET_LPC11U24)
 #define _gs_getc() LPC_USART->RBR
 #define _gs_putc(c) while(!(LPC_USART->LSR & (1<<5))); LPC_USART->THR = c
+#elif defined(TARGET_KL25Z)
+#error "no support GS_UART_DIRECT"
 #endif
-#else
+#else // GS_UART_DIRECT
 #define _gs_getc() _gs.getc()
 #define _gs_putc(c) _gs.putc(c)
 #endif