|
It is interesting that you said that you can have 12 endpoints in the group.
In stack_cfg.h you have:
- /**
- * @brief APS: MAX number of groups size in the group table
- * In each group entry, there is 8 endpoints existed.
- */
- #define APS_GROUP_TABLE_NUM 8
复制代码
It says that you can have 8 endpoints in a group.
And in stack\zigbee\aps\aps_api.h, which is used in aps_group.c there is:
- #define APS_EP_NUM_IN_GROUP,_TBL 8
复制代码
|
|