summaryrefslogtreecommitdiff
path: root/src/osal
diff options
context:
space:
mode:
authorhathach <[email protected]>2021-09-25 16:16:55 +0700
committerhathach <[email protected]>2021-09-25 16:16:55 +0700
commit73872a5df04a8939d5f71509788c659e38efcecd (patch)
treed1841cea6736268a41f80efe108c393a8a9f0d18 /src/osal
parent1c17cb1c451f8564623fef09fa4bd74a0e2a30da (diff)
add CFG_TUSB_OS_INC_PATH for os include path
useful for freertos/ prefix with esp IDF
Diffstat (limited to 'src/osal')
-rw-r--r--src/osal/osal_freertos.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/osal/osal_freertos.h b/src/osal/osal_freertos.h
index 66070c273..4573e01f5 100644
--- a/src/osal/osal_freertos.h
+++ b/src/osal/osal_freertos.h
@@ -28,10 +28,10 @@
#define _TUSB_OSAL_FREERTOS_H_
// FreeRTOS Headers
-#include "FreeRTOS.h"
-#include "semphr.h"
-#include "queue.h"
-#include "task.h"
+#include TU_INCLUDE_PATH(CFG_TUSB_OS_INC_PATH,FreeRTOS.h)
+#include TU_INCLUDE_PATH(CFG_TUSB_OS_INC_PATH,semphr.h)
+#include TU_INCLUDE_PATH(CFG_TUSB_OS_INC_PATH,queue.h)
+#include TU_INCLUDE_PATH(CFG_TUSB_OS_INC_PATH,task.h)
#ifdef __cplusplus
extern "C" {