mbed IP library over Ethernet

Dependencies:   lwip-eth Socket lwip lwip-sys

Dependents:   denki-yohou_b Network-RTOS NTPClient_HelloWorld temp_FIAP ... more

Legacy Networking Libraries

This is an mbed 2 networking library. For mbed 5, the networking libraries have been revised to better support additional network stacks and thread safety here.

Files at this revision

API Documentation at this revision

Comitter:
emilmont
Date:
Mon Aug 06 09:24:35 2012 +0000
Parent:
22:2a797ba9babe
Child:
24:c9bb345dcc65
Commit message:
Add error message for unsupported targets

Changed in this revision

EthernetInterface.h Show annotated file Show diff for this revision Revisions of this file
--- a/EthernetInterface.h	Sat Aug 04 13:44:35 2012 +0000
+++ b/EthernetInterface.h	Mon Aug 06 09:24:35 2012 +0000
@@ -20,6 +20,10 @@
 #ifndef ETHERNETINTERFACE_H_
 #define ETHERNETINTERFACE_H_
 
+#if !defined(TARGET_LPC1768)
+#error The Ethernet Interface library is supported only on the mbed NXP LPC1768
+#endif
+
 #include "rtos.h"
 #include "lwip/netif.h"