Rewrite from scratch a TCP/IP stack for mbed. So far the following parts are usable: Drivers: - EMAC driver (from CMSIS 2.0) Protocols: - Ethernet protocol - ARP over ethernet for IPv4 - IPv4 over Ethernet - ICMPv4 over IPv4 - UDPv4 over IPv4 APIs: - Sockets for UDPv4 The structure of this stack is designed to be very modular. Each protocol can register one or more protocol to handle its payload, and in each protocol, an API can be hooked (like Sockets for example). This is an early release.

Revision:
2:3d1c0fbd10e6
Parent:
1:f4040665bc61
Child:
5:3cd83fcb1467
--- a/NetIF.h	Sun Jun 12 19:17:11 2011 +0000
+++ b/NetIF.h	Sun Jun 12 19:51:22 2011 +0000
@@ -136,7 +136,6 @@
 
 
 NetIF_t    *NetIF_RegisterInterface(IPv4_Addr_t *address, IPv4_Addr_t *netmask, IPv4_Addr_t *gateway, NetIF_Driver_t *driver, void *driverParameter);
-int32_t    NetIF_ProcessFrames(void);
 int32_t    NetIF_RegisterPeriodicFunction(char *name, PeriodicFunction_t function, FunctionPeriod_t period);
 int32_t    NetIF_ProcessTimers(int32_t elapsedTime);
 int32_t    NetIF_SendIPv4Packet(IPv4_Header_t *ipv4Header);