Other Parts Discussed in Thread: Z-STACK
Hi,
I try to add function into ZigBee application that allow user to change PAN ID and channel manually.
According to the user guide, I could use configuration file(config.ini) to setup specific PAN ID and channel.
Unfortunately, this configuration only read once at first time start-up, it makes no effect even if I changed the setting afterwards.
I tried to add some code to do that, as below:
_NIB.nwkLogicalChannel = channelId;
_NIB.nwkPanId = panId;
NLME_UpdateNV(0x01);
But I faced error while compiling it which shown "undefine reference" for NLME_UpdateNV function.
Does Z-Stack Linux Gateway support NLME_UpdateNV function, or I’ve to add extra build options in compiling phase to enable that?
BR,
Rieen