![]() |
EVE 1.0
|
![]() |
Typedefs | |
typedef uint32_t | EventBits_t |
typedef struct EventGroup_t * | EventGroupHandle_t |
typedef uint32_t EventBits_t |
typedef struct EventGroup_t* EventGroupHandle_t |
EventGroupHandle_t xEventGroupCreate | ( | void | ) |
xEventGroupCreate emulation. http://www.freertos.org/xEventGroupCreate.html
EventBits_t xEventGroupWaitBits | ( | const EventGroupHandle_t | xEventGroup, |
const EventBits_t | uxBitsToWaitFor, | ||
const BaseType_t | xClearOnExit, | ||
const BaseType_t | xWaitForAllBits, | ||
TickType_t | xTicksToWait | ||
) |
xEventGroupWaitBits emulation. http://www.freertos.org/xEventGroupWaitBits.html
EventBits_t xEventGroupSetBits | ( | EventGroupHandle_t | xEventGroup, |
const EventBits_t | uxBitsToSet | ||
) |
xEventGroupSetBits emulation. http://www.freertos.org/xEventGroupSetBits.html
Referenced by xEventGroupSetBitsFromISR().
|
inlinestatic |
xEventGroupSetBitsFromISR emulation. http://www.freertos.org/xEventGroupSetBitsFromISR.html
Definition at line 613 of file rtos.h.
References xEventGroupClearBits(), and xEventGroupSetBits().
EventBits_t xEventGroupClearBits | ( | EventGroupHandle_t | xEventGroup, |
const EventBits_t | uxBitsToClear | ||
) |
xEventGroupClearBits emulation. http://www.freertos.org/xEventGroupClearBits.html
Referenced by xEventGroupClearBitsFromISR(), and xEventGroupSetBitsFromISR().
|
inlinestatic |
xEventGroupClearBitsFromISR emulation. http://www.freertos.org/xEventGroupClearBitsFromISR.html
Definition at line 633 of file rtos.h.
References xEventGroupClearBits(), and xEventGroupGetBits().
EventBits_t xEventGroupGetBits | ( | EventGroupHandle_t | xEventGroup | ) |
xEventGroupGetBits emulation. http://www.freertos.org/xEventGroupGetBits.html
Referenced by xEventGroupClearBitsFromISR(), and xEventGroupGetBitsFromISR().
|
inlinestatic |
xEventGroupGetBitsFromISR http://www.freertos.org/xEventGroupGetBitsFromISR.html
Definition at line 650 of file rtos.h.
References vEventGroupDelete(), xEventGroupGetBits(), and xEventGroupSync().
EventBits_t xEventGroupSync | ( | EventGroupHandle_t | xEventGroup, |
const EventBits_t | uxBitsToSet, | ||
const EventBits_t | uxBitsToWaitFor, | ||
TickType_t | xTicksToWait | ||
) |
xEventGroupSync emulation http://www.freertos.org/xEventGroupSync.html
Referenced by xEventGroupGetBitsFromISR().
void vEventGroupDelete | ( | EventGroupHandle_t | xEventGroup | ) |
vEventGroupDelete emulation. http://www.freertos.org/vEventGroupDelete.html
Referenced by xEventGroupGetBitsFromISR().