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.
// ...
case BDB_COMMISSIONING_NWK_STEERING:
if(bdbCommissioningModeMsg->bdbCommissioningStatus == BDB_COMMISSIONING_SUCCESS)
{
//YOUR JOB: //We are on the nwk, what now?
// added for SLA
zstack_zdoMatchDescReq_t req;
memset(&req, 0x00, sizeof(req));
uint16_t inClusterIDs[] = {ZCL_CLUSTER_ID_GEN_ON_OFF, ZCL_CLUSTER_ID_GEN_GROUPS};
req.dstAddr = 0xFFFD; // to devices w/ rxonidle
req.nwkAddrOfInterest = 0xFFFD; // to devices w/ rxonidle
req.n_inputClusters = 2;
req.pInputClusters = inClusterIDs;
req.n_outputClusters = 0;
req.profileID = ZCL_HA_PROFILE_ID;
Zstackapi_ZdoMatchDescReq(appServiceTaskId, &req);
// end added // ...
} // ...
问题1: zstack_zdoMatchDescReq_t 这个定义的原先是什么 ,3.0.2 没有找到
问题2:Zstackapi_ZdoMatchDescReq 这个函数 3.0.2 没有找到;
上面的程序是看
这个历程 的;