* configUSE_EVENT_GROUPS is set to 1 in FreeRTOSConfig.h. */ #if ( configUSE_EVENT_GROUPS == 1 ) typedef struct EventGroupDef_t { EventBits_t uxEventBits; List_t xTasksWaitingForBits; /**< List of tasks waiting for a bit to be set. */ #...
intmain(void){/* Before an event group can be used it must first be created. */xEventGroup =xEventGroupCreate();/* Create the task that sets event bits in the event group. */xTaskCreate( vEventBitSettingTask,"Bit Setter",1000,NULL,1,NULL);/* Create the task that waits for event ...
#include "event_groups.h" /* Lint e961, e750 and e9021 are suppressed as a MISRA exception justified * because the MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined * for the header files above, but not in this file, in order to generate the ...
* event_groups.h * * Type by which event groups are referenced. For example, a call to * xEventGroupCreate() returns an EventGroupHandle_t variable that can then * be used as a parameter to other event group functions. * * \defgroup EventGroupHandle_t EventGroupHandle_t * \ingroup...
Event groups enable admins to group individual events together so that all of them can be managed in one place. Admins can map event groups to one or more of the attributes available in an event. Event groups are also used to map the priority for events. To learn more, see Managing Pr...
Event groups allow events to be communicated to tasks and they allow a task to wait in the blocked state for a combination of one or more events to occur. Event groups unblock the tasks that is waiting for the same event, or combination of events, when the event occurs. Event groups ...
An event group is a group of two or more events that Netcool Operations Insight has correlated together because the underlying analytics have determined that these events belong together.
WF_EVENT_GROUPS_PKG.Generate PL/SQL Syntax function Generate(x_group_guid in raw, x_member_guid in raw) return varchar2; Description Generates an XML message containing the complete information from the WF_EVENT_GROUPS table for the specified event group member definition....
Creating Event Groups & EventsTo create your study’s schedule, you must first create Event Groups and Events. Each Event represents a visit in your study. Events are grouped into Event Groups. Event Groups can be configured as Cycles by marking them as repeating. Each Event Group and Event...
RTOS event groups