For internal use only - execute a 'set bits' command that was pended from * an interrupt. */
| 668 | /* For internal use only - execute a 'set bits' command that was pended from |
| 669 | * an interrupt. */ |
| 670 | portTIMER_CALLBACK_ATTRIBUTE |
| 671 | void 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 |
nothing calls this directly
no test coverage detected