summaryrefslogtreecommitdiff
path: root/tinyusb/host
diff options
context:
space:
mode:
authorhathach <[email protected]>2013-04-27 14:17:06 +0700
committerhathach <[email protected]>2013-04-27 14:17:06 +0700
commit4db386525f0df0d7a17266da1607f5d9ce820b72 (patch)
treeebfa73461a7c17120b158a7d825506e043f2dbeb /tinyusb/host
parent8bd077fa5c21ade1aa791b0339b66e637ad894e5 (diff)
reduce delay after reset to 20ms
correct freeRTOS configCPU_CLOCK_HZ to correct M4 mcu clock
Diffstat (limited to 'tinyusb/host')
-rw-r--r--tinyusb/host/usbh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tinyusb/host/usbh.c b/tinyusb/host/usbh.c
index 333d2d9a2..a8a9aa3b6 100644
--- a/tinyusb/host/usbh.c
+++ b/tinyusb/host/usbh.c
@@ -289,8 +289,8 @@ tusb_error_t enumeration_body_subtask(void)
usbh_devices[0].state = TUSB_DEVICE_STATE_ADDRESSED;
#ifndef _TEST_
- // TODO hack delay 100 ms for slow device (use retry on the 1st xfer instead later)
- osal_task_delay(100);
+ // TODO hack delay 20 ms for slow device (use retry on the 1st xfer instead later)
+ osal_task_delay(20);
#endif
//------------- Get first 8 bytes of device descriptor to get Control Endpoint Size -------------//