Module eventgroup

Module eventgroup 

Source
Expand description

Event group (bitfield synchronization) for oveRTOS.

An EventGroup holds a set of bits that any thread or ISR can set or clear. Other threads can block until specific bit patterns appear, enabling fine-grained inter-task signalling without dedicated queues.

Structs§

EventGroup
Event group — a set of named bits that can be set, cleared, and waited on.
WaitFlags
Flags controlling EventGroup::wait_bits behavior.

Constants§

EG_CLEAR_ON_EXITDeprecated
Deprecated alias for WaitFlags::CLEAR_ON_EXIT.
EG_WAIT_ALLDeprecated
Deprecated alias for WaitFlags::WAIT_ALL.