CDC/ECM driver for mbed, based on USBDevice by mbed-official. Uses PicoTCP to access Ethernet USB device. License: GPLv2

Dependents:   USBEthernet_TEST

Fork of USB_Ethernet by Daniele Lacamera

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers pico_simple_http.h Source File

pico_simple_http.h

00001 /*********************************************************************
00002 PicoTCP. Copyright (c) 2012 TASS Belgium NV. Some rights reserved.
00003 See LICENSE and COPYING for usage.
00004 
00005 Author: Andrei Carp <andrei.carp@tass.be>
00006 *********************************************************************/
00007 
00008 #ifndef PICO_SIMPLE_HTTP
00009 #define PICO_SIMPLE_HTTP
00010 
00011 extern int pico_startHttpServer(struct pico_ip4 * address);
00012 extern int pico_stopHttpServer(void);
00013 
00014 #endif