I try to build the LED blinker with FreeRTOS, but there is some errors in 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 are all looks familiar, as i see they are callback functions in FreeRTOS.
So i dont know how to fix it, i tried to change configUSE_IDLE_HOOK and configUSE_TICK_HOOK parameters, but it still dont work(
I tried to make a project with KEIL and SEGGER Embedded Studio and there is the same problem in both of them.