diff options
| author | hathach <[email protected]> | 2018-02-28 15:02:40 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2018-02-28 15:05:55 +0700 |
| commit | 45ea2ff358ddcba9e66cb0aad0ae8e1ecb1edb84 (patch) | |
| tree | 21ade0298414989e37112235b04cc13cd2578ce0 /tinyusb/osal/osal_freeRTOS.h | |
| parent | 65a076f1981ae123568c66ec06d90b26707dac9e (diff) | |
remove cmsis rtx support
Diffstat (limited to 'tinyusb/osal/osal_freeRTOS.h')
| -rw-r--r-- | tinyusb/osal/osal_freeRTOS.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tinyusb/osal/osal_freeRTOS.h b/tinyusb/osal/osal_freeRTOS.h index 363aa1863..d8d42c033 100644 --- a/tinyusb/osal/osal_freeRTOS.h +++ b/tinyusb/osal/osal_freeRTOS.h @@ -69,7 +69,6 @@ static inline bool osal_task_create(osal_func_t code, const char* name, uint32_t return xTaskCreate(code, (const signed char*) name, stack_size, param, prio, task_hdl); } -static inline void osal_task_delay(uint32_t msec) ATTR_ALWAYS_INLINE; static inline void osal_task_delay(uint32_t msec) { vTaskDelay( (TUSB_CFG_TICKS_HZ * msec) / 1000 ); |
