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.

Z-stack linux gateway change panid and channel

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