WIZ820io(W5200) network interface, EthernetInterface compatible.

Dependents:   Seeed_Ethernet_Shield_V2_HelloWorld Seeed_Ethernet_Shield Cayenne-WIZ820ioInterface Seeed_Ethernet_Shield

Fork of WiflyInterface by mbed official

WIZ820io

Revision:
5:fb15c35d1e28
Parent:
1:fb4494783863
--- a/Socket/Socket.h	Thu Dec 20 15:08:58 2012 +0000
+++ b/Socket/Socket.h	Tue Aug 27 12:50:11 2013 +0000
@@ -18,7 +18,7 @@
 #ifndef SOCKET_H_
 #define SOCKET_H_
 
-#include "Wifly.h"
+#include "WIZ820io.h"
 
 /** Socket file descriptor and select wrapper
   */
@@ -42,9 +42,10 @@
     ~Socket();
     
 protected:
+    int _sock_fd;
     bool _blocking;
     int _timeout;
-    Wifly * wifi;
+    WIZ820io* eth;
 };