Part Number: CC2340R5
case ZB_NLME_STATUS_INDICATION:
{
zb_zdo_signal_nlme_status_indication_params_t *nlme_status_ind = ZB_ZDO_SIGNAL_GET_PARAMS(sg_p, zb_zdo_signal_nlme_status_indication_params_t);
printf("Network operation %02x,nwk_addr = %02x\r\n", nlme_status_ind->nlme_status.status,nlme_status_ind->nlme_status.network_addr);
break;
}
Where can I find the meaning of the status bits represented by nlme_status_ind->nlme_status.status and nlme_status_ind->nlme_status.network_addr? Under what circumstances will this signal occur? Why will the coordinator restart after generating this signal multiple times?