|
@@ -148,7 +148,7 @@ This file get's pulled into assembly sources. Therefore, some includes need to b
|
|
|
#endif
|
|
#endif
|
|
|
#define configUSE_CORE_AFFINITY 1
|
|
#define configUSE_CORE_AFFINITY 1
|
|
|
#define configRUN_MULTIPLE_PRIORITIES 1
|
|
#define configRUN_MULTIPLE_PRIORITIES 1
|
|
|
-#define configUSE_MINIMAL_IDLE_HOOK 1
|
|
|
|
|
|
|
+#define configUSE_MINIMAL_IDLE_HOOK 1 // This is always enabled to call IDF style idle hooks, by can be "--Wl,--wrap" if users enable CONFIG_FREERTOS_USE_MINIMAL_IDLE_HOOK
|
|
|
|
|
|
|
|
// ------------- Synchronization Primitives ----------------
|
|
// ------------- Synchronization Primitives ----------------
|
|
|
|
|
|
|
@@ -183,7 +183,11 @@ This file get's pulled into assembly sources. Therefore, some includes need to b
|
|
|
|
|
|
|
|
// ------------------------ Hooks --------------------------
|
|
// ------------------------ Hooks --------------------------
|
|
|
|
|
|
|
|
|
|
+#if CONFIG_FREERTOS_USE_IDLE_HOOK
|
|
|
#define configUSE_IDLE_HOOK 1
|
|
#define configUSE_IDLE_HOOK 1
|
|
|
|
|
+#else
|
|
|
|
|
+#define configUSE_IDLE_HOOK 0
|
|
|
|
|
+#endif
|
|
|
#define configUSE_TICK_HOOK 1
|
|
#define configUSE_TICK_HOOK 1
|
|
|
#if CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE
|
|
#if CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE
|
|
|
#define configCHECK_FOR_STACK_OVERFLOW 0
|
|
#define configCHECK_FOR_STACK_OVERFLOW 0
|