This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
hi,
When i set the coordinator's zgApsUseExtendedPANID to be {0x12,00,00,00,00,00,00,00 }, and router's to be all 0.
Then when the router joins into the network, how to get the extended pan ID at the application layer?
Thanks!
Extended PAN ID is used for joining a specific zigbee network and is specified by manufacture. If you don't have Extended PAN ID specified on your zigbee device, it will choose any one proper to join. However, the Extend PAN ID won't be changed on your zigbee device.
hi,yikai
I agree with you about " it will choose any one proper to join".
And after the router joined into the network, how could I get the extended PAN ID in the router code ?
My application needs the value of extended PAN ID .
Thank you!
As I said in my previous post, extended PAN ID is pre-programmed on zgApsUseExtendedPANID of your device. This value won't change no matter the device joins any zigbee network.
hi,
I am sorry I haven't described it correctly.
Because the router can join into different networks setup by different coordinators,
when network "A", the ext_pan_id may be "a",
when network "B", the ext_pan_id may be "b" ,
and "C" , and "D" .....
And my application code on the router wants to get the value ,such as "a" ,"b" , or "c" .
How can I access it ?
If you don't specify Extended PAN ID in your device, there would be no Extended PAN ID return in the NLME_beaconInd_t parameter of ZDO_beaconNotifyIndCB. You can only know which PAN ID the device joins.
HI,
Thanks YiKai,
Just now I've found that the global variable "_NIB" contains the extended pan id , and many other network parameters.
When "ZDO_STATE_CHANGED" , _NIB is filled with values, and the application gets the extended pan id from it.
I wonder if there is some better way to do this ! Does Anyone know?