USBHost library. NOTE: This library is only officially supported on the LPC1768 platform. For more information, please see the handbook page.

Dependencies:   FATFileSystem mbed-rtos

Dependents:   BTstack WallbotWii SD to Flash Data Transfer USBHost-MSD_HelloWorld ... more

Legacy Warning

This is an mbed 2 library. To learn more about mbed OS 5, visit the docs.

Pull requests against this repository are no longer supported. Please raise against mbed OS 5 as documented above.

Revision:
9:7671b6a8c363
Parent:
8:93da8ea2708b
Child:
24:868cbfe611a7
--- a/USBHost/USBEndpoint.h	Thu Mar 14 11:49:53 2013 +0000
+++ b/USBHost/USBEndpoint.h	Thu Mar 14 14:20:03 2013 +0000
@@ -19,10 +19,11 @@
 
 #include "FunctionPointer.h"
 #include "USBHostTypes.h"
+#include "rtos.h"
 
 class USBDeviceConnected;
 
-/** 
+/**
 * USBEndpoint class
 */
 class USBEndpoint
@@ -137,6 +138,8 @@
     inline uint8_t              getIntfNb() { return intf_nb; };
     
     USBDeviceConnected * dev;
+    
+    Queue<uint8_t, 1> ep_queue;
 
 private:
     ENDPOINT_TYPE type;