GSwifiInterface library (interface for GainSpan Wi-Fi GS1011 modules) Please see https://mbed.org/users/gsfan/notebook/GSwifiInterface/
Dependents: GSwifiInterface_HelloWorld GSwifiInterface_HelloServo GSwifiInterface_UDPEchoServer GSwifiInterface_UDPEchoClient ... more
Fork of WiflyInterface by
GainSpan Wi-Fi library
The GS1011/GS2100 is an ultra low power 802.11b wireless module from GainSpan.
mbed RTOS supported.
- about this library: http://mbed.org/users/gsfan/notebook/GSwifiInterface/
- about Wi-Fi module: http://mbed.org/users/gsfan/notebook/gainspan_wifi/
ゲインスパン Wi-Fi モジュール ライブラリ
ゲインスパン社の低電力 Wi-Fiモジュール(無線LAN) GS1011/GS2100 シリーズ用のライブラリです。
mbed RTOS に対応しています。(mbed2.0)
- このライブラリについて: http://mbed.org/users/gsfan/notebook/gainspan_wifi/
- Wi-FIモジュールについて: http://mbed.org/users/gsfan/notebook/gainspan_wifi/
- UARTコマンド、SPIデータインターフェースに対応しました。(2019/09)
Socket/TCPSocketServer.h@22:d25a5a0d2497, 2019-09-24 (annotated)
- Committer:
- gsfan
- Date:
- Tue Sep 24 06:24:37 2019 +0000
- Revision:
- 22:d25a5a0d2497
- Parent:
- 5:78943b3945b5
UART Command and SPI Data supported.; bug fix.;
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
samux | 1:fb4494783863 | 1 | /* Copyright (C) 2012 mbed.org, MIT License |
samux | 1:fb4494783863 | 2 | * |
samux | 1:fb4494783863 | 3 | * Permission is hereby granted, free of charge, to any person obtaining a copy of this software |
samux | 1:fb4494783863 | 4 | * and associated documentation files (the "Software"), to deal in the Software without restriction, |
samux | 1:fb4494783863 | 5 | * including without limitation the rights to use, copy, modify, merge, publish, distribute, |
samux | 1:fb4494783863 | 6 | * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is |
samux | 1:fb4494783863 | 7 | * furnished to do so, subject to the following conditions: |
samux | 1:fb4494783863 | 8 | * |
samux | 1:fb4494783863 | 9 | * The above copyright notice and this permission notice shall be included in all copies or |
samux | 1:fb4494783863 | 10 | * substantial portions of the Software. |
samux | 1:fb4494783863 | 11 | * |
samux | 1:fb4494783863 | 12 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING |
samux | 1:fb4494783863 | 13 | * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
samux | 1:fb4494783863 | 14 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, |
samux | 1:fb4494783863 | 15 | * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
samux | 1:fb4494783863 | 16 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
samux | 1:fb4494783863 | 17 | */ |
gsfan | 5:78943b3945b5 | 18 | /* Copyright (C) 2013 gsfan, MIT License |
gsfan | 5:78943b3945b5 | 19 | * port to the GainSpan Wi-FI module GS1011 |
gsfan | 5:78943b3945b5 | 20 | */ |
samux | 1:fb4494783863 | 21 | #ifndef TCPSOCKETSERVER_H |
samux | 1:fb4494783863 | 22 | #define TCPSOCKETSERVER_H |
samux | 1:fb4494783863 | 23 | |
samux | 1:fb4494783863 | 24 | #include "Socket/Socket.h" |
samux | 1:fb4494783863 | 25 | #include "TCPSocketConnection.h" |
samux | 1:fb4494783863 | 26 | |
samux | 1:fb4494783863 | 27 | /** TCP Server. |
samux | 1:fb4494783863 | 28 | */ |
samux | 1:fb4494783863 | 29 | class TCPSocketServer : public Socket { |
samux | 1:fb4494783863 | 30 | public: |
samux | 1:fb4494783863 | 31 | /** Instantiate a TCP Server. |
samux | 1:fb4494783863 | 32 | */ |
samux | 1:fb4494783863 | 33 | TCPSocketServer(); |
samux | 1:fb4494783863 | 34 | |
samux | 1:fb4494783863 | 35 | /** Bind a socket to a specific port. |
samux | 1:fb4494783863 | 36 | \param port The port to listen for incoming connections on. |
samux | 1:fb4494783863 | 37 | \return 0 on success, -1 on failure. |
samux | 1:fb4494783863 | 38 | */ |
samux | 1:fb4494783863 | 39 | int bind(int port); |
samux | 1:fb4494783863 | 40 | |
samux | 1:fb4494783863 | 41 | /** Start listening for incoming connections. |
samux | 1:fb4494783863 | 42 | \param backlog number of pending connections that can be queued up at any |
samux | 1:fb4494783863 | 43 | one time [Default: 1]. |
samux | 1:fb4494783863 | 44 | \return 0 on success, -1 on failure. |
samux | 1:fb4494783863 | 45 | */ |
samux | 1:fb4494783863 | 46 | int listen(int backlog=1); |
samux | 1:fb4494783863 | 47 | |
samux | 1:fb4494783863 | 48 | /** Accept a new connection. |
samux | 1:fb4494783863 | 49 | \param connection A TCPSocketConnection instance that will handle the incoming connection. |
samux | 1:fb4494783863 | 50 | \return 0 on success, -1 on failure. |
samux | 1:fb4494783863 | 51 | */ |
samux | 1:fb4494783863 | 52 | int accept(TCPSocketConnection& connection); |
samux | 1:fb4494783863 | 53 | }; |
samux | 1:fb4494783863 | 54 | |
samux | 1:fb4494783863 | 55 | #endif |