Block task until an event happens (xTaskNotify didn’t fit)

Hello, I would like some help to find out how use the FreeRTOS resources: I need lock a task execution until an event (interrupt) happen, but i need unlock the task only if this event happened after the task has been locked, interrupts that happened before the lock does not care, the first feature that came in mind was the task Notify events, but I figured out that if any event happened before the xTaskNotifyWait it will not lock (because the state will be eNotified) even if I set all bits in ulBitsToClearOnEntry ( is there a way to clean the eNotified state before calling xTaskNotifyWait() ?) Stopping the interrupt until the locking moment is not an option, any suggestions? (I am new to the RTOS world, still learning how to model my solutions using RTOS, sorry if this is a trivial problem) Thanks for your time! Gustavo

Block task until an event happens (xTaskNotify didn’t fit)

You can call xTaskNotifyWait() with a block time of 0 to clear the notification state before you call it again to wait for the interrupt. In 8.2.3 there is also a function xTaskNotifyStateClear().

Block task until an event happens (xTaskNotify didn’t fit)

Thank you! Exactly what I needed! I’m using 8.2.1 atm, I can just update my Freertos source to the latest? no need any adittional changes, right? Thanks again

Block task until an event happens (xTaskNotify didn’t fit)

Yes – it should be just a drop in replacement. Regards.

Block task until an event happens (xTaskNotify didn’t fit)

Perfect! Thanks