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: USBHostSerial/USBHostSerial.cpp
- Revision:
- 5:e48791a1ef18
- Parent:
- 4:b320d68e98e7
- Child:
- 8:93da8ea2708b
--- a/USBHostSerial/USBHostSerial.cpp Tue Mar 12 17:23:37 2013 +0000 +++ b/USBHostSerial/USBHostSerial.cpp Wed Mar 13 10:23:01 2013 +0000 @@ -52,7 +52,7 @@ if (dev_connected) { return true; } - for (int i = 0; i < MAX_DEVICE_CONNECTED; i++) { + for (uint8_t i = 0; i < MAX_DEVICE_CONNECTED; i++) { if ((dev = host->getDevice(i)) != NULL) { USB_DBG("Trying to connect serial device\r\n");