diff options
| author | hathach <[email protected]> | 2018-03-01 11:28:26 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2018-03-01 11:28:26 +0700 |
| commit | 329fdc026c4536b218438577c90491bc0b69fff8 (patch) | |
| tree | acd8b9abffcb78231774cc955e0bc544ea68ffa7 /tinyusb/host | |
| parent | a789fad4b7b23b8324e07ee4b9d08a145f5df0f9 (diff) | |
change osal_task_create signature
Diffstat (limited to 'tinyusb/host')
| -rw-r--r-- | tinyusb/host/usbh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyusb/host/usbh.c b/tinyusb/host/usbh.c index 3e242d82b..8ab25a19a 100644 --- a/tinyusb/host/usbh.c +++ b/tinyusb/host/usbh.c @@ -150,7 +150,7 @@ tusb_error_t usbh_init(void) enum_queue_hdl = osal_queue_create( ENUM_QUEUE_DEPTH, sizeof(uint32_t) );
ASSERT_PTR(enum_queue_hdl, TUSB_ERROR_OSAL_QUEUE_FAILED);
- osal_task_create(usbh_enumeration_task, "usbh", 200, NULL, TUSB_CFG_OS_TASK_PRIO, NULL);
+ osal_task_create(usbh_enumeration_task, "usbh", 200, NULL, TUSB_CFG_OS_TASK_PRIO);
//------------- Semaphore, Mutex for Control Pipe -------------//
for(uint8_t i=0; i<TUSB_CFG_HOST_DEVICE_MAX+1; i++) // including address zero
|
