xSemaphoreGiveFromISR macro problem

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

xSemaphoreGiveFromISR macro problem

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.

xSemaphoreGiveFromISR macro problem

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