so this is what i added to the FreeRTOSConfig.h:
#define configUSE_TIMERS 1
#define configTIMER_TASK_PRIORITY (configMAX_PRIORITIES - 1)
#define configTIMER_TASK_STACK_DEPTH (configMINIMAL_STACK_SIZE * 2)
#define configTIMER_QUEUE_LENGTH 10
and then when i compile it ends with:
< A LOT OF POSSIBLY NOT INLINABLE FUNCTIONS>
arm-none-eabi-ld: gcc/tasks.o: in function `vTaskStartScheduler':
tasks.c:(.text+0x2e8): undefined reference to `xTimerCreateTimerTask'
make: *** [makedefs:191: gcc/RTOSDemo.axf] Error 1
the weird thing is: that is a linker error i think, so gcc did find the xTimerCreateTimerTask. which it should’ve, because timers.c is in the project, timers.h is included in tasks.c and timers.h also has xTimerCreateTimerTask
t