Part Number: CC2530
Other Parts Discussed in Thread: Z-STACK,
Platform cc2530 z-stack home 1.2.2.42930, the specific issues are as follows:
My enddevice is joining in the network.After the association response packet, when waiting for the tansport key, execute into the following code:
If ( ZG_SECURE_ENABLED && ( ZDApp_RestoreNwkKey( TRUE ) == false ) )
{
// wait for auth from trust center
ZDApp_ChangeState( DEV_END_DEVICE_UNAUTH );
// Start the reset timer for MAX UNAUTH time
ZDApp_ResetTimerStart( MAX_DEVICE_UNAUTH_TIMEOUT );
}
Because my coordinator uses whitelist mode, the coordinator does not send a tansport key to the device without adding a whitelist. This code will cause the device to reset after ten seconds. How do I need to set up in order for the device to continue the network search process without receiving the tansport key?