You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pxEventBits= ( EventGroup_t* ) pxEventGroupBuffer;/*lint !e740 !e9087 EventGroup_t and StaticEventGroup_t are deliberately aliased for data hiding purposes and guaranteed to have the same size and alignment requirement - checked by configASSERT(). */
xReturn=xTimerPendFunctionCallFromISR( vEventGroupClearBitsCallback, ( void* ) xEventGroup, ( uint32_t ) uxBitsToClear, NULL );/*lint !e9087 Can't avoid cast to void* as a generic callback function not specific to this use case. Callback casts back to original type so safe. */
pxListEnd=listGET_END_MARKER( pxList );/*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */
( 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. */
( void ) xEventGroupClearBits( pvEventGroup, ( EventBits_t ) ulBitsToClear );/*lint !e9079 Can't avoid cast to void* as a generic timer callback prototype. Callback casts back to original type so safe. */
xReturn=xTimerPendFunctionCallFromISR( vEventGroupSetBitsCallback, ( void* ) xEventGroup, ( uint32_t ) uxBitsToSet, pxHigherPriorityTaskWoken );/*lint !e9087 Can't avoid cast to void* as a generic callback function not specific to this use case. Callback casts back to original type so safe. */
EventGroup_tconst*pxEventBits= ( EventGroup_t* ) xEventGroup;/*lint !e9087 !e9079 EventGroupHandle_t is a pointer to an EventGroup_t, but EventGroupHandle_t is kept opaque outside of this file for data hiding purposes. */
( ( EventGroup_t* ) xEventGroup )->uxEventGroupNumber=uxEventGroupNumber;/*lint !e9087 !e9079 EventGroupHandle_t is a pointer to an EventGroup_t, but EventGroupHandle_t is kept opaque outside of this file for data hiding purposes. */
0 commit comments