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

FieldDescription
groupIdIdentifier for the group to which the event belongs. Refer to STACK_GroupId_T for possible values.
evtLenThe length of the event data in bytes.
p_eventA pointer to the event data. This is the actual information related to the event that occurred within the STACK.