event_groups.h
void vEventGroupDelete( EventGroupHandle_t xEventGroup );
Delete an event group that was previously created using a call to xEventGroupCreate().
Tasks that are blocked on the event group being deleted will be unblocked, and report an event group value of 0.
The RTOS source file FreeRTOS/source/event_groups.c must be included in the build for the vEventGroupDelete() function to be available.
This function cannot be called from an interrupt.
| xEventGroup | The event group being deleted. |