From ae08bdcc31284aeb9032b87de05b1cc96b33f7e0 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 0f42f3c47..94dbce867 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 ) {