STACK_Event_T
C
typedef struct STACK_Event_T { STACK_GroupId_T groupId; uint16_t evtLen; uint8_t *p_event; } STACK_Event_T;
Description
Structure representing an event generated by the STACK.
Field Documentation
Field | Description |
---|---|
groupId | Identifier for the group to which the event belongs. Refer to STACK_GroupId_T for possible values. |
evtLen | The length of the event data in bytes. |
p_event | A pointer to the event data. This is the actual information related to the event that occurred within the STACK. |