Fork of mbed official TCPSocket_Helloworld using PicoTCP

Dependencies:   PicoTCP lpc1768-picotcp-eth mbed-rtos mbed

Fork of TCPSocket_HelloWorld by mbed official

This is a fork of the official TCPSocket_Helloworld from mbed. (https://mbed.org/users/mbed_official/code/TCPSocket_HelloWorld/).

This project demonstrates that the PicoTCP library basically provides the same API calls, so in order to change the TCP/IP stack of your application, you only need to remove the EthernetInterface library and replace it with the following two projects:

Revision:
5:01f6c3e112af
Parent:
2:e087e9b789e9
Child:
7:65188f4a8c25
--- a/main.cpp	Sun Jul 15 19:45:47 2012 +0000
+++ b/main.cpp	Mon Jul 16 14:49:13 2012 +0000
@@ -29,7 +29,7 @@
     sock.close();  
     
     eth.disconnect();  
-
+    
     while(1) {
     }
 }