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.h | |
| parent | 65a076f1981ae123568c66ec06d90b26707dac9e (diff) | |
remove cmsis rtx support
Diffstat (limited to 'tinyusb/osal/osal.h')
| -rw-r--r-- | tinyusb/osal/osal.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tinyusb/osal/osal.h b/tinyusb/osal/osal.h index 9f7a2b320..4f2fdad22 100644 --- a/tinyusb/osal/osal.h +++ b/tinyusb/osal/osal.h @@ -51,8 +51,6 @@ * @{ */
#define TUSB_OS_NONE 1 ///< No RTOS is used
#define TUSB_OS_FREERTOS 2 ///< FreeRTOS is used
-#define TUSB_OS_CMSIS_RTX 3 ///< CMSIS RTX is used
-#define TUSB_OS_UCOS3 4 ///< MicroC OS III is used (not supported yet)
/** @} */
#include "tusb_option.h"
@@ -71,8 +69,6 @@ static inline bool osal_task_create(osal_func_t code, const char* name, uint32_t #else
#if TUSB_CFG_OS == TUSB_OS_FREERTOS
#include "osal_freeRTOS.h"
- #elif TUSB_CFG_OS == TUSB_OS_CMSIS_RTX
- #include "osal_cmsis_rtx.h"
#else
#error TUSB_CFG_OS is not defined or OS is not supported yet
#endif
|
