组表结构体
typedef struct
{
uint16 ID; // Unique to this table
uint8 name【APS_GROUP_NAME_LEN】; // Human readable name of group
} aps_Group_t;
ID -16位的组ID
name -文本组名(人类语言)APS_GROUP_NAME_LEN为16且不可更改。
组表入口-apsGroupItem_t
组表记录(入口)
typedef struct apsGroupItem
{
struct apsGroupItem *next;
uint8 endpoint;
aps_Group_t group;
} apsGroupItem_t;
next -指向组表的下一个入口(组表为链表结构),推荐使用组表查找和维护函数来遍历组表。
endpoint -接受消息的终端
group -组ID和组名