Part Number:CC2630
Hi,
When the COO sends a LeaveRequest to my ZED I dont Receive a Indication nor a Confirmation, even though I registered for both Callbacks:
zstack_devZDOCBReq_t zdoCBReq = {0};
// Register for Callbacks, turn on:
// Device State Change,
// ZDO Match Descriptor Response,
zdoCBReq.has_devStateChange = true;
zdoCBReq.devStateChange = true;
zdoCBReq.has_joinCnfCB = true;
zdoCBReq.joinCnfCB = true;
zdoCBReq.has_leaveIndCB = true;
zdoCBReq.leaveIndCB = true;
zdoCBReq.has_leaveCnfCB = true;
zdoCBReq.leaveCnfCB = true;
(void)Zstackapi_DevZDOCBReq(ztsEntity, &zdoCBReq);
Besides that the ZED isn't restarting after it sends a LeaveResponse and still answers to a Node Descriptor Request from the COO. I attached the logs of the process. The Data Requests are triggered manually by the application as done with the workaround from Ticket
(Please visit the site to view this file)