I'm trying to build an LED blinker with FreeRTOS, but there are some errors in the project:
undefined symbol vApplicationIdleHook referenced by symbol prvIdleTask (section .text.prvIdleTask in file tasks.o)
undefined symbol vApplicationMallocFailedHook referenced by symbol pvPortMalloc (section .text.pvPortMalloc in file heap_1.o)
undefined symbol vApplicationStackOverflowHook referenced by symbol vTaskSwitchContext (section .text.vTaskSwitchContext in file tasks.o)
undefined symbol vApplicationTickHook referenced by symbol xTaskIncrementTick (section .text.xTaskIncrementTick in file tasks.o)
They all look familiar, as I see they are callback functions in FreeRTOS.
So I don't know how to fix it. I tried to change the configUSE_IDLE_HOOK and configUSE_TICK_HOOK parameters, but it still doesn't work.
I tried to make a project with KEIL and SEGGER Embedded Studio and there is the same problem in both of them.