Hello!
I use Zigbee CLI example and multi_sensor example on nRF52840.
(examples/zigbee/experimental/cli/cli_agent_router and examples/zigbee/experimental/multi_sensor)
I modify these programs as:
#define ERASE_PERSISTENT_CONFIG ZB_TRUE
When both device same time start, multi_sensor join to network well.
CLI:
> bdb role zc
Coordinator set
Done
> bdb start
Started coordinator
Done
>
multi_sensor:
<info> app: Production configuration is not present or invalid (status: -1)
<info> app: Zigbee stack initialized
<info> app: Device started for the first time
<info> app: Start network steering
<info> app: Joined network successfully (Extended PAN ID: f4ce363f1c7ea7d6, PAN ID: 0xC086)
But, case of multi_sensor start after CLI start about 3 minutes, multi_sensor has fail to Join to network.
<info> app: Production configuration is not present or invalid (status: -1)
<info> app: Zigbee stack initialized
<info> app: Device started for the first time
<info> app: Start network steering
<error> app: Failed to join network (status: -1)
<error> app: Failed to join network (status: -1)
<error> app: Failed to join network (status: -1)
<error> app: Failed to join network (status: -1)
<error> app: Failed to join network (status: -1)
<error> app: Failed to join network (status: -1)
<error> app: Failed to join network (status: -1)
<error> app: Failed to join network (status: -1)
.
.
.
So, When this happens, how do I re-accept network steering in the CLI?
Thanks.