No more update~~ please use W5500Interface.

Fork of EthernetInterfaceW5500 by Bongjun Hur


Bongjun Hur wrote:

NO more update for this library.

Please move to this page W5500Interface for newer version.

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.

This Library for W5500 users. no need to use lwIP(or S/W TCP/IP) Some update & code clean for W5500 only refer from WIZ550ioInterface, WIZnetLibrary and WiflyInterface.

Thanks for ban4jp. This library forks of WIZ550ioInterface.

Committer:
ppo
Date:
Fri Aug 29 12:00:38 2014 +0000
Revision:
15:fe68ac753657
Parent:
10:cadac6bcd169
bug fixed in close(), now socket is really closed

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Bongjun 10:cadac6bcd169 1
Bongjun 10:cadac6bcd169 2 #pragma once
Bongjun 10:cadac6bcd169 3
Bongjun 10:cadac6bcd169 4 //#include "mbed.h"
Bongjun 10:cadac6bcd169 5 //#include "mbed_debug.h"
Bongjun 10:cadac6bcd169 6
Bongjun 10:cadac6bcd169 7 #define USE_W5500
Bongjun 10:cadac6bcd169 8 //#define USE_W5200 // don't use this library
Bongjun 10:cadac6bcd169 9 //#define USE_W5100 // don't use this library
Bongjun 10:cadac6bcd169 10
Bongjun 10:cadac6bcd169 11 #if defined(USE_W5500)
Bongjun 10:cadac6bcd169 12 #include "W5500.h"
Bongjun 10:cadac6bcd169 13 //#define USE_WIZ550IO_MAC // want to use the default MAC address stored in the WIZ550io
Bongjun 10:cadac6bcd169 14 #endif
Bongjun 10:cadac6bcd169 15
Bongjun 10:cadac6bcd169 16 /*
Bongjun 10:cadac6bcd169 17 // current library don't want to support old chips.
Bongjun 10:cadac6bcd169 18 #if defined(USE_W5200)
Bongjun 10:cadac6bcd169 19 #include "W5200.h"
Bongjun 10:cadac6bcd169 20 #endif
Bongjun 10:cadac6bcd169 21
Bongjun 10:cadac6bcd169 22 #if defined(USE_W5100)
Bongjun 10:cadac6bcd169 23 #include "W5100.h"
Bongjun 10:cadac6bcd169 24 #endif
Bongjun 10:cadac6bcd169 25 */