This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

关于Z-Stack Lighting 1.0.2 ADD GRUOP的问题

Other Parts Discussed in Thread: Z-STACK

void zllSampleLight_Init( byte task_id )中关于回调函数的注册有如下代码

// Register the ZCL General Cluster Library callback functions  

zclGeneral_RegisterCmdCallbacks( SAMPLELIGHT_ENDPOINT, &zllSampleLight_GenCmdCBs );

其中zllSampleLight_GenCmdCBs 如附件所示。这是不是说明在Z-Stack Lighting 1.0.2的案例中没有对zll_sampleremote发送来的

zclGeneral_SendGroupAdd( SAMPLEREMOTE_ENDPOINT, &zllSampleRemote_DstAddr, groupSelId, emptyGroupName, FALSE, sampleRemoteSeqNum++ );命令进行处理?还是已经处理并加入特定的Group,只是没有给remote反馈命令?

       另外,我自己写了一个Group Response commands的回调函数,编译也通过了,但remote按下GROUP_ADD_KEY后,并没有执行我所添加的回调函数,为什么?