MCPcopy Create free account
hub / github.com/FreeRTOS/FreeRTOS-Kernel / vEventGroupSetBitsCallback

Function vEventGroupSetBitsCallback

event_groups.c:670–675  ·  view source on GitHub ↗

For internal use only - execute a 'set bits' command that was pended from * an interrupt. */

Source from the content-addressed store, hash-verified

668/* For internal use only - execute a 'set bits' command that was pended from
669 * an interrupt. */
670portTIMER_CALLBACK_ATTRIBUTE
671void vEventGroupSetBitsCallback( void * pvEventGroup,
672 const uint32_t ulBitsToSet )
673{
674 ( void ) xEventGroupSetBits( pvEventGroup, ( EventBits_t ) ulBitsToSet ); /*lint !e9079 Can't avoid cast to void* as a generic timer callback prototype. Callback casts back to original type so safe. */
675}
676/*-----------------------------------------------------------*/
677
678/* For internal use only - execute a 'clear bits' command that was pended from

Callers

nothing calls this directly

Calls 1

xEventGroupSetBitsFunction · 0.85

Tested by

no test coverage detected