zstack 3.0.2如何查询组内成员的个数和每个成员的地址信息?(通过zclGeneral_SendGroupAdd指令加组的)
Viki Shi:
/** Find a group with endpoint and groupID*- returns a pointer to the group information, NULL if not found*/
extern aps_Group_t *aps_FindGroup( uint8_t endpoint, uint16_t groupID );/** Find all groups for an endpoint*- returns number of groups copied to groupList*/
extern uint8_t aps_FindAllGroupsForEndpoint( uint8_t endpoint, uint16_t *groupList );请参考aps_group.h
user5367314:
回复 Viki Shi:
// Group Table Element
typedef struct
{uint16 ID;// Unique to this tableuint8name[APS_GROUP_NAME_LEN]; // Human readable name of group
} aps_Group_t;
我想根据组ID查询组内所有的成员的MAC地址或者网络地址?
请问怎么操作?
Viki Shi:
回复 user5367314:
应该不行,没找到相关函数