#include <stdlib.h>
#include "FreeRTOS.h"
#include "task.h"
#include "timers.h"
#include "event_groups.h"
Go to the source code of this file.
|
static BaseType_t | prvTestWaitCondition (const EventBits_t uxCurrentEventBits, const EventBits_t uxBitsToWaitFor, const BaseType_t xWaitForAllBits) PRIVILEGED_FUNCTION |
|
void | vEventGroupClearBitsCallback (void *pvEventGroup, const uint32_t ulBitsToClear) |
|
void | vEventGroupDelete (EventGroupHandle_t xEventGroup) |
|
void | vEventGroupSetBitsCallback (void *pvEventGroup, const uint32_t ulBitsToSet) |
|
EventBits_t | xEventGroupClearBits (EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear) |
|
EventBits_t | xEventGroupGetBitsFromISR (EventGroupHandle_t xEventGroup) |
|
EventBits_t | xEventGroupSetBits (EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet) |
|
EventBits_t | xEventGroupSync (EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet, const EventBits_t uxBitsToWaitFor, TickType_t xTicksToWait) |
|
EventBits_t | xEventGroupWaitBits (EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToWaitFor, const BaseType_t xClearOnExit, const BaseType_t xWaitForAllBits, TickType_t xTicksToWait) |
|
◆ eventCLEAR_EVENTS_ON_EXIT_BIT
#define eventCLEAR_EVENTS_ON_EXIT_BIT 0x01000000UL |
◆ eventEVENT_BITS_CONTROL_BYTES
#define eventEVENT_BITS_CONTROL_BYTES 0xff000000UL |
◆ eventUNBLOCKED_DUE_TO_BIT_SET
#define eventUNBLOCKED_DUE_TO_BIT_SET 0x02000000UL |
◆ eventWAIT_FOR_ALL_BITS
#define eventWAIT_FOR_ALL_BITS 0x04000000UL |
◆ MPU_WRAPPERS_INCLUDED_FROM_API_FILE
#define MPU_WRAPPERS_INCLUDED_FROM_API_FILE |
◆ EventGroup_t
◆ prvTestWaitCondition()
◆ vEventGroupClearBitsCallback()
void vEventGroupClearBitsCallback |
( |
void * |
pvEventGroup, |
|
|
const uint32_t |
ulBitsToClear |
|
) |
| |
◆ vEventGroupDelete()
event_groups.h
void xEventGroupDelete( EventGroupHandle_t xEventGroup );
Delete an event group that was previously created by a call to xEventGroupCreate(). Tasks that are blocked on the event group will be unblocked and obtain 0 as the event group's value.
- Parameters
-
xEventGroup | The event group being deleted. |
Definition at line 599 of file event_groups.c.
◆ vEventGroupSetBitsCallback()
void vEventGroupSetBitsCallback |
( |
void * |
pvEventGroup, |
|
|
const uint32_t |
ulBitsToSet |
|
) |
| |
◆ xEventGroupClearBits()
◆ xEventGroupGetBitsFromISR()
◆ xEventGroupSetBits()
◆ xEventGroupSync()
◆ xEventGroupWaitBits()