nordiste wrote on Thursday, October 14, 2010:
hi,
i have a big problem with a file who contain this function :
void demon_heure(void *ptr)
{
while(1)
{
heure_maj();
vTaskDelay(250/portTICK_RATE_MS);
}
}
in unique file, c32 return me error :
Heure.c:16: undefined reference to `vTaskDelay’
in main file, all is OK.
the include section of all theses files are :
#include "recepteur.h"
#include "string.h"
#include "stdlib.h"
#include "FSIO.h"
#include "ImageDecoder.h"
in recepteur.h :
#include "FreeRTOSConfig.h"
#include "FreeRTOS.h"
#include "task.h"
what is the problem ???