Part Number: LAUNCHXL-CC2650
Other Parts Discussed in Thread: CC2530, CC2650, Z-STACK
Tool/software: TI-RTOS
Hello Members,
I've Launchxl-cc2650 acting as a End device and CC2530 as a coordinator. I am running Sampleswitch example for Zstack testing. The coordinator has formed the network and End device is able to discover the network.
For joining, I've disabled the TC-link key security at the coordinator end (just for debug purpose). The End device is initiating the joining connection to the coordiantor but every time It failed to join.
These are the line of code which is showing the network joining request:
In Zstart.c file, @fn zstack_ZStatusValues Zstart_join(void)
ret = Zstackapi_DevJoinReq(params.entityID, &join);
if(ret == zstack_ZStatusValues_ZSuccess)
{
params.state = ZSTART_STATE_JOINING;
}
else
{
params.state = ZSTART_STATE_HOLD;
}
return(ret);
It returns params.state as ZSTART_STATE_HOLD and start the z stack again. Does the sampleswitch application also support any kind of security as I am not able to join the network? I've read all three documentation from TI (Zstack home dev guide etc.) but didn't find much information regarding joining and security at CC2650 end. Please guide me in right direction.
Apologies if I am not able to explain things properly. I'll try to explain more if require.
With Regards,
Priya