Synopsis
typedef enum {
  CTL_EVENT_WAIT_ANY_EVENTS,
  CTL_EVENT_WAIT_ANY_EVENTS_WITH_AUTO_CLEAR,
  CTL_EVENT_WAIT_ALL_EVENTS,
  CTL_EVENT_WAIT_ALL_EVENTS_WITH_AUTO_CLEAR
} CTL_EVENT_WAIT_TYPE_t;
Description

CTL_EVENT_WAIT_TYPE_t defines how to wait for an event set.

Constant Description
CTL_EVENT_WAIT_ANY_EVENTS Wait for any of the specified events to be set in the event set.
CTL_EVENT_WAIT_ANY_EVENTS_WITH_AUTO_CLEAR Wait for any of the specified events to be set in the event set and reset (clear) them.
CTL_EVENT_WAIT_ALL_EVENTS Wait for all of the specified events to be set in the event set.
CTL_EVENT_WAIT_ALL_EVENTS_WITH_AUTO_CLEAR Wait for all of the specified events to be set in the event set and reset (clear) them.
See Also

ctl_events_wait