From c2606c021386588675cba1e7dfee01b9488e8175 Mon Sep 17 00:00:00 2001 From: hathach Date: Sun, 5 Apr 2020 18:22:16 +0700 Subject: allow application to implement its own os --- src/osal/osal.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/osal') diff --git a/src/osal/osal.h b/src/osal/osal.h index 8b7527a7e..94c71e7d9 100644 --- a/src/osal/osal.h +++ b/src/osal/osal.h @@ -53,6 +53,8 @@ typedef void (*osal_task_func_t)( void * ); #include "osal_freertos.h" #elif CFG_TUSB_OS == OPT_OS_MYNEWT #include "osal_mynewt.h" +#elif CFG_TUSB_OS == OPT_OS_CUSTOM + #include "tusb_os_custom.h" // implemented by application #else #error OS is not supported yet #endif -- cgit v1.3.1