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.

Dependents:   EvrythngApi Websocket_Ethernet_HelloWorld_W5500 Websocket_Ethernet_W5500 CurrentWeatherData_W5500 ... more

Information

It has EthernetInterface class like official EthernetInterface , but uses Wiznet chip driver codes.

So this library can use only the WIZnet W5500 or WIZ550io users.

This library has referred to many project such as WIZ550ioInterface, WiflyInterface and WIZnet Library.

Thanks all.

Committer:
embeddist
Date:
Tue Apr 28 13:52:23 2015 +0000
Revision:
11:5499fa2d8898
Parent:
0:e11e8793c3ce
Remove the setting of tx/rx buffer in SWReset

Who changed what in which revision?

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