diff options
| author | hathach <[email protected]> | 2018-03-01 21:15:06 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2018-03-01 21:15:06 +0700 |
| commit | 52ed2547cd450ea1a3abd2501553c4c304515c75 (patch) | |
| tree | 208a5b4e145fc78200e729b2f0a391921876dd43 /tinyusb | |
| parent | 9a2924fb366d87f583ea57efd0b58381a5bba3fb (diff) | |
upgrade freertos to v10
Diffstat (limited to 'tinyusb')
| -rw-r--r-- | tinyusb/osal/osal_freeRTOS.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyusb/osal/osal_freeRTOS.h b/tinyusb/osal/osal_freeRTOS.h index da68a5059..33be17c04 100644 --- a/tinyusb/osal/osal_freeRTOS.h +++ b/tinyusb/osal/osal_freeRTOS.h @@ -70,7 +70,7 @@ typedef void* osal_task_t; static inline osal_task_t osal_task_create(osal_func_t code, const char* name, uint32_t stack_size, void* param, uint32_t prio) { osal_task_t task_hdl; - xTaskCreate(code, (const signed char*) name, stack_size, param, prio, &task_hdl); + xTaskCreate(code, (const char*) name, stack_size, param, prio, &task_hdl); return task_hdl; } |
