Zigbee reconnect problem
- June 14, 2022
- 2 replies
- 7891 views
I'm trying to develop an application for zigbee for the stm32wb55, but i get some problems when I try to reconnect.
The configuration for the coordinator its the next parameters:
- config.startupControl = ZbStartTypeForm;
- config.extendedPanId = 0x400;
- config.panId = 0x7171;
- config.shortAddress = 0x0000;
- config.networkManagerAddress = 0x7171;
The configuration for the End devices are the next parameters:
config.startupControl = ZbStartTypeRejoin;
config.panId = 0x7171;
config.networkManagerAddress = 0x7171;
config.shortAddress = 0x01;
config.extendedPanId = 0x400;
The first time it performs the connection well. But, when the End Device lose the connection (reboot, or whatever it takes), it cannot recconect to the coordinator. I get the errors in the two pictures. Sometimes it tries to connect to another End Device board and other times tries to connect to 0x0 (coordinator), but it does not seem to work.
I do not know what I'm doing wrong with it, maybe I'm missing some configuration parameters or something more to try to recconect.
