system
(system)
March 20, 2015, 12:29pm
1
ogh wrote on Friday, March 20, 2015 :
Dear All,
I’m using FreeRTOS V8.2.0 and I’ve some trouble using xSemaphoreGiveFromISR macro (defined in semphr.h)
the macro is defined as:
#define xSemaphoreGiveFromISR( xSemaphore, pxHigherPriorityTaskWoken ) xQueueGiveFromISR( ( QueueHandle_t ) ( xSemaphore ), ( pxHigherPriorityTaskWoken ) )
But xQueueGiveFromISR function doesn’t exist anymore in queue.c file
In v 7.6.0 this macro was define by xQueueGenericSendFromISR.
Is it a bug in the new version.
Thanks in advance
OGH
rtel
(Richard Barry)
March 20, 2015, 12:33pm
2
rtel wrote on Friday, March 20, 2015 :
I suspect your problem is caused by mixing up source files from different FreeRTOS versions. What is the version number at the top of the semphr.h header file, and what is the version number at the top of the queue.c and queue.h source files?
Regards.
system
(system)
March 20, 2015, 1:01pm
3
ogh wrote on Friday, March 20, 2015 :
Like we says in French “Oooups”
You’re right. The version of Queue.c (and all file in source dir) was 8.1.2
Thanks in advance