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

Fork of PicoTCP by Daniele Lacamera

Committer:
daniele
Date:
Sat Aug 03 08:50:27 2013 +0000
Revision:
51:18637a3d071f
Parent:
3:b4047e8a0123
Branch for CDC-ECM: Work in progress

Who changed what in which revision?

UserRevisionLine numberNew contents of line
daniele 3:b4047e8a0123 1 /*********************************************************************
daniele 3:b4047e8a0123 2 PicoTCP. Copyright (c) 2012 TASS Belgium NV. Some rights reserved.
daniele 3:b4047e8a0123 3 See LICENSE and COPYING for usage.
daniele 3:b4047e8a0123 4
daniele 3:b4047e8a0123 5 *********************************************************************/
daniele 3:b4047e8a0123 6 #ifndef _INCLUDE_PICO_LOOP
daniele 3:b4047e8a0123 7 #define _INCLUDE_PICO_LOOP
daniele 3:b4047e8a0123 8 #include "pico_config.h"
daniele 3:b4047e8a0123 9 #include "pico_device.h"
daniele 3:b4047e8a0123 10
daniele 3:b4047e8a0123 11 void pico_loop_destroy(struct pico_device *loop);
daniele 3:b4047e8a0123 12 struct pico_device *pico_loop_create(void);
daniele 3:b4047e8a0123 13
daniele 3:b4047e8a0123 14 #endif
daniele 3:b4047e8a0123 15