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.

如何配置属性定时汇报?

我是ZSTACK HOME1.2.1的工程。现在配置协调器发送属性汇报的配置命令给终端(light),监控到命令是发出去了,目的地址和簇id也都设置对了,但是终端没有在配置的时间内进行属性汇报。请大神帮看一下。代码如下:

     zclCfgReportCmd_t  config_report_cmd;
     config_report_cmd.numAttr = 1;
     config_report_cmd.attrList[0].direction = ZCL_FRAME_CLIENT_SERVER_DIR;
     config_report_cmd.attrList[0].attrID = ATTRID_ON_OFF;
     config_report_cmd.attrList[0].dataType = ZCL_DATATYPE_BOOLEAN;
     config_report_cmd.attrList[0].minReportInt = 5;
     config_report_cmd.attrList[0].maxReportInt = 10;
   
     zcl_SendConfigReportCmd(SAMPLESW_ENDPOINT, &zclSampleSw_DstAddress, ZCL_CLUSTER_ID_GEN_ON_OFF,&config_report_cmd, ZCL_FRAME_CLIENT_SERVER_DIR, 0,0);