From a10abd695b1908f60bc013839cc664df23dac22a Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Tue, 30 Oct 2018 16:05:45 +0800 Subject: [PATCH] freertos: fix compilation warning in single core mode When tickless idle is enabled --- components/freertos/tasks.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/freertos/tasks.c b/components/freertos/tasks.c index 0f42f3c474..94dbce8672 100644 --- a/components/freertos/tasks.c +++ b/components/freertos/tasks.c @@ -2153,6 +2153,8 @@ void vTaskSuspendAll( void ) #if ( configUSE_TICKLESS_IDLE != 0 ) +#if ( portNUM_PROCESSORS > 1 ) + static BaseType_t xHaveReadyTasks() { for (int i = tskIDLE_PRIORITY + 1; i < configMAX_PRIORITIES; ++i) @@ -2169,6 +2171,7 @@ void vTaskSuspendAll( void ) return pdFALSE; } +#endif // portNUM_PROCESSORS > 1 static TickType_t prvGetExpectedIdleTime( void ) { -- 2.40.0