Other Parts Discussed in Thread: CC2340R5
Tool/software:
Hi TI team, I only used one CC2652P ZC and one CC2340R5 ZED test, and the two devices sent ZCL data to each other every 50ms. After about 4 hours of testing, the ZC automatically sent an off-grid request to the ZED (rejoin field is 1). Please help me analyze what causes this phenomenon to occur. I've added sniff log to the attachment.
Note: In the ZC project, End Device Timeout is set to 9-512minutes.
by the way, for CC2340 ZED projects, when I receive the ZB_ZDO_SIGNAL_LEAVE notification from the function zboss_signal_handler(), what can I do to know whether rejoin is yes or no, can you give me an example
I tried the following, but it didn't work.
case ZB_ZDO_SIGNAL_LEAVE:
{
zb_zdo_signal_leave_params_t *req_param = ZB_BUF_GET_PARAM(param, zb_zdo_signal_leave_params_t);
Log_printf(LogModule_Zigbee_App, Log_INFO, "leave_type (%d) ", req_param->leave_type);
}
break;