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.

Files at this revision

API Documentation at this revision

Comitter:
kaizen
Date:
Mon Sep 29 05:03:41 2014 +0000
Parent:
6:677dfa3984d1
Child:
8:7609a4bd55fd
Commit message:
Added Serial interface for debugging

Changed in this revision

WIZnet/W5500.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/WIZnet/W5500.cpp	Mon Sep 29 04:56:56 2014 +0000
+++ b/WIZnet/W5500.cpp	Mon Sep 29 05:03:41 2014 +0000
@@ -7,7 +7,7 @@
 #ifdef USE_W5500
 
 //Debug is disabled by default
-#if 1
+#if 0
 #define DBG(...) do{debug("%p %d %s ", this,__LINE__,__PRETTY_FUNCTION__); debug(__VA_ARGS__); } while(0);
 //#define DBG(x, ...) debug("[W5500:DBG]"x"\r\n", ##__VA_ARGS__);
 #define WARN(x, ...) debug("[W5500:WARN]"x"\r\n", ##__VA_ARGS__);