I added the Isochronous to USBHost library. The Isochronous code based on the following. http://developer.mbed.org/users/va009039/code/USBHostC270_example/
Dependencies: FATFileSystem mbed-rtos
Fork of USBHost_AddIso by
Diff: USBHost/USBEndpoint.h
- 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;