This is WIZnet Ethernet Interface using Hardware TCP/IP chip, W5500, W5200 and W5100. One of them can be selected by enabling it in wiznet.h.

Dependents:   Embedded_web EmailButton EmailButton HTTPClient_Weather ... more

other drivers

for only W5500 / WIZ550io user, you could use

Import libraryW5500Interface

This is the Interface library for WIZnet W5500 chip which forked of EthernetInterfaceW5500, WIZnetInterface and WIZ550ioInterface. This library has simple name as "W5500Interface". and can be used for Wiz550io users also.

Committer:
Bongjun
Date:
Sun May 31 10:25:40 2015 +0000
Revision:
8:cb8808b47e69
Parent:
0:b72d22e10709
fix some codes of reading Sn_RX_RSR, Sn_TX_FSR in W5100.cpp, W5200.cpp; added is_fin_received()  in W5100, W5200 files

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jbkim 0:b72d22e10709 1 /* Copyright (C) 2012 mbed.org, MIT License
jbkim 0:b72d22e10709 2 *
jbkim 0:b72d22e10709 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
jbkim 0:b72d22e10709 4 * and associated documentation files (the "Software"), to deal in the Software without restriction,
jbkim 0:b72d22e10709 5 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
jbkim 0:b72d22e10709 6 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
jbkim 0:b72d22e10709 7 * furnished to do so, subject to the following conditions:
jbkim 0:b72d22e10709 8 *
jbkim 0:b72d22e10709 9 * The above copyright notice and this permission notice shall be included in all copies or
jbkim 0:b72d22e10709 10 * substantial portions of the Software.
jbkim 0:b72d22e10709 11 *
jbkim 0:b72d22e10709 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
jbkim 0:b72d22e10709 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
jbkim 0:b72d22e10709 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
jbkim 0:b72d22e10709 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
jbkim 0:b72d22e10709 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
jbkim 0:b72d22e10709 17 */
jbkim 0:b72d22e10709 18 #ifndef SOCKET_H_
jbkim 0:b72d22e10709 19 #define SOCKET_H_
jbkim 0:b72d22e10709 20
jbkim 0:b72d22e10709 21 #include "wiznet.h"
jbkim 0:b72d22e10709 22
jbkim 0:b72d22e10709 23 #define htons(x) __REV16(x)
jbkim 0:b72d22e10709 24 #define ntohs(x) __REV16(x)
jbkim 0:b72d22e10709 25 #define htonl(x) __REV(x)
jbkim 0:b72d22e10709 26 #define ntohl(x) __REV(x)
jbkim 0:b72d22e10709 27
jbkim 0:b72d22e10709 28 /** Socket file descriptor and select wrapper
jbkim 0:b72d22e10709 29 */
jbkim 0:b72d22e10709 30 class Socket {
jbkim 0:b72d22e10709 31 public:
jbkim 0:b72d22e10709 32 /** Socket
jbkim 0:b72d22e10709 33 */
jbkim 0:b72d22e10709 34 Socket();
jbkim 0:b72d22e10709 35
jbkim 0:b72d22e10709 36 /** Set blocking or non-blocking mode of the socket and a timeout on
jbkim 0:b72d22e10709 37 blocking socket operations
jbkim 0:b72d22e10709 38 \param blocking true for blocking mode, false for non-blocking mode.
jbkim 0:b72d22e10709 39 \param timeout timeout in ms [Default: (1500)ms].
jbkim 0:b72d22e10709 40 */
jbkim 0:b72d22e10709 41 void set_blocking(bool blocking, unsigned int timeout=1500);
jbkim 0:b72d22e10709 42
jbkim 0:b72d22e10709 43 /** Close the socket file descriptor
jbkim 0:b72d22e10709 44 */
jbkim 0:b72d22e10709 45 int close();
jbkim 0:b72d22e10709 46
jbkim 0:b72d22e10709 47 ~Socket();
jbkim 0:b72d22e10709 48
jbkim 0:b72d22e10709 49 protected:
jbkim 0:b72d22e10709 50 int _sock_fd;
jbkim 0:b72d22e10709 51 bool _blocking;
jbkim 0:b72d22e10709 52 int _timeout;
jbkim 0:b72d22e10709 53
jbkim 0:b72d22e10709 54 WIZnet_Chip* eth;
jbkim 0:b72d22e10709 55 };
jbkim 0:b72d22e10709 56
jbkim 0:b72d22e10709 57
jbkim 0:b72d22e10709 58 #endif /* SOCKET_H_ */
jbkim 0:b72d22e10709 59