Closed dcoles closed 2 hours ago
Furi provides access to FreeRTOS Task Notification feature which can be used for syncronization between threads.
Task notifications act as u32 bitmask, so can be used to signal multiple potential interesting states on the target thread.
u32
@JarvisCraft Thanks for the review. I've accepted your suggestions and added the repr(transparent) annotation.
repr(transparent)
Furi provides access to FreeRTOS Task Notification feature which can be used for syncronization between threads.
Task notifications act as
u32
bitmask, so can be used to signal multiple potential interesting states on the target thread.