Hello everybody
Since a week I tried to port FreeRTOS on the efm32 gecko dev kit,and I have this error :
undefined reference to `vTaskDelete’.
I dont work on IAR , i just copied files into Coocox CoID ,and it compiles , but when the link step begin I have this error.
Can you please tell me what i’m doing wrong?
I have also an error : #error This demo uses timers. configUSE_TIMERS must be set to 1 in FreeRTOSConfig.h.
and in the config file :
#ifndef configUSE_TIMERS
#error This demo uses timers. configUSE_TIMERS must be set to 1 in FreeRTOSConfig.h.
#endif
#if configUSE_TIMERS != 1
#error This demo uses timers. configUSE_TIMERS must be set to 1 in FreeRTOSConfig.h.
#endif
thats mean in the two cases I have the same error ,I don’t really understand all thes process because it is not really my work ,so any suggestion to unblock these problems?what i’m missing exactly?
As the error says, you need to set configuration options in FreeRTOSConfig.h, which will be in your application source tree somewhere. The options are listed here http://www.freertos.org/a00110.html