Updated Mar 2025
xEventGroupSetBits()
event_groups.h
1EventBits_t xEventGroupSetBits( EventGroupHandle_t xEventGroup,2 const EventBits_t uxBitsToSet );
Set bits (flags) within an RTOS event group. This function cannot be called from an interrupt. xEventGroupSetBitsFromISR() is a version that can be called from an interrupt.
Setting bits in an event group will automatically unblock tasks that are blocked waiting for the bits.
The RTOS source file FreeRTOS/source/event_groups.c must be included in the build for the
xEventGroupSetBits()
Parameters:
-
xEventGroup
The event group in which the bits are to be set. The event group must have previously been created using a call to xEventGroupCreate().
-
uxBitsToSet
A bitwise value that indicates the bit or bits to set in the event group. For example, set
to 0x08 to set only bit 3. SetuxBitsToSetto 0x09 to set bit 3 and bit 0.uxBitsToSet
Returns:
-
The value of the event group at the time the call to
returns.xEventGroupSetBits()There are two reasons why the returned value might have the bits specified by the
parameter cleared:uxBitsToSet-
If setting a bit results in a task that was waiting for the bit leaving the blocked state then it is possible the bit will have been cleared automatically (see the
parameter of xEventGroupWaitBits()).xClearBitOnExit -
Any unblocked (or otherwise Ready state) task that has a priority above that of the task that called
will execute and may change the event group value before the call toxEventGroupSetBits()returns.xEventGroupSetBits()
-
Example usage:
1#define BIT_0 ( 1 << 0 )2#define BIT_4 ( 1 << 4 )34void aFunction( EventGroupHandle_t xEventGroup )5{6 EventBits_t uxBits;78 /* Set bit 0 and bit 4 in xEventGroup. */9 uxBits = xEventGroupSetBits(10 xEventGroup, /* The event group being updated. */11 BIT_0 | BIT_4 );/* The bits being set. */1213 if( ( uxBits & ( BIT_0 | BIT_4 ) ) == ( BIT_0 | BIT_4 ) )14 {15 /* Both bit 0 and bit 4 remained set when the function returned. */16 }17 else if( ( uxBits & BIT_0 ) != 0 )18 {19 /* Bit 0 remained set when the function returned, but bit 4 was20 cleared. It might be that bit 4 was cleared automatically as a21 task that was waiting for bit 4 was removed from the Blocked22 state. */23 }24 else if( ( uxBits & BIT_4 ) != 0 )25 {26 /* Bit 4 remained set when the function returned, but bit 0 was27 cleared. It might be that bit 0 was cleared automatically as a28 task that was waiting for bit 0 was removed from the Blocked29 state. */30 }31 else32 {33 /* Neither bit 0 nor bit 4 remained set. It might be that a task34 was waiting for both of the bits to be set, and the bits were cleared35 as the task left the Blocked state. */36 }37}