Free (GPLv2) TCP/IP stack developed by TASS Belgium

Dependents:   lpc1768-picotcp-demo ZeroMQ_PicoTCP_Publisher_demo TCPSocket_HelloWorld_PicoTCP Pico_TCP_UDP_Test ... more

PicoTCP. Copyright (c) 2013 TASS Belgium NV.

Released under the GNU General Public License, version 2.

Different licensing models may exist, at the sole discretion of the Copyright holders.

Official homepage: http://www.picotcp.com

Bug tracker: https://github.com/tass-belgium/picotcp/issues

Development steps:

  • initial integration with mbed RTOS
  • generic mbed Ethernet driver
  • high performance NXP LPC1768 specific Ethernet driver
  • Multi-threading support for mbed RTOS
  • Berkeley sockets and integration with the New Socket API
  • Fork of the apps running on top of the New Socket API
  • Scheduling optimizations
  • Debugging/benchmarking/testing

Demo application (measuring TCP sender performance):

Import programlpc1768-picotcp-demo

A PicoTCP demo app testing the ethernet throughput on the lpc1768 mbed board.

Revision:
35:6078073547bb
Parent:
20:3fa3db9fd4a4
Child:
37:bdf736327c71
--- a/Socket/Socket.h	Thu Jun 20 13:48:41 2013 +0000
+++ b/Socket/Socket.h	Fri Jun 21 08:47:35 2013 +0000
@@ -59,8 +59,8 @@
     void set_blocking(bool blocking, unsigned int timeout=1500);
     
     /** Set socket options
-    \param level     stack level (see: lwip/sockets.h)
-    \param optname   option ID
+    \param level     stack level - parameter is ignored (kept for compatibility)
+    \param optname   option ID - please check pico_socket.h
     \param optval    option value
     \param socklen_t length of the option value
     \return 0 on success, -1 on failure
@@ -68,8 +68,8 @@
     int set_option(int level, int optname, const void *optval, socklen_t optlen);
     
     /** Get socket options
-        \param level     stack level (see: lwip/sockets.h)
-        \param optname   option ID
+        \param level     stack level - parameter is ignored (kept for compatibility)
+        \param optname   option ID - please check pico_socket.h or lower in the page
         \param optval    buffer pointer where to write the option value
         \param socklen_t length of the option value
         \return 0 on success, -1 on failure