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

Revision:
1:759afa79ebe8
Parent:
0:34c829fbc7a8
--- a/USBCDC_ECM.h	Fri Aug 02 08:04:58 2013 +0000
+++ b/USBCDC_ECM.h	Sat Aug 03 08:51:00 2013 +0000
@@ -78,6 +78,7 @@
     */
     virtual uint8_t * configurationDesc();
     
+public:
     /*
     * Send a buffer
     *
@@ -87,7 +88,7 @@
     * @returns true if successful
     */
     bool send(uint8_t * buffer, uint32_t size);
-    
+
     /*
     * Read a buffer from a certain endpoint. Warning: blocking
     *
@@ -114,6 +115,7 @@
     virtual bool USBCallback_request();
     virtual bool USBCallback_setConfiguration(uint8_t configuration);
     volatile bool terminal_connected;
+    
 
 };