[MC13213] - Zigbee nwkNeighborTable update

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

[MC13213] - Zigbee nwkNeighborTable update

1,709 次查看
CecchiSandrone
Contributor II
Hi all,

I don't understand how nwkNeighborTable is updated by network layer. For example I'm seriously interested in the value of LQI field; from Zigbee specifications (3.7.1.4 page 341): "A table entry shall be updated every time a device receives any frame from the corresponding neighbor". But from what I see the LQI field remains the same even if I move the neighbor away from the device. In particular, for ZC the value is always FF, while for ZR the value is relative to the instant when the child joins network


Message Edited by Cecchi Sandrone on 2007-12-17 05:44 PM
标签 (1)
0 项奖励
4 回复数

519 次查看
zoz
Contributor I
I have the same problem ... :smileysad: Could you solve it somehow? How can we make the stack updating the neighbor table? If the stack does not update the neighbor table, it does not meet the ZigBee Specification.
0 项奖励

519 次查看
CecchiSandrone
Contributor II
Yes zoz, I think it too. However it seems that this problem will be fixed in the next release of the stack.
0 项奖励

519 次查看
Mads
Contributor V
Cecchi,
the easiest way for you to check the link quality of a node is in the APSDE-Data.indication.
 
Just check the following in the BeeAppIndication() :
 
uint8_t CurrentLqi;
 
CurrentLqi = pMsg->msgData.dataIndication.linkQuality
 
This will allow you to read the lqi the packet was received with.
 
Br,
Mads
0 项奖励

519 次查看
CecchiSandrone
Contributor II
Yes Mads, I know this. But for my application can be useful to retrieve LQI of neighbor links, all in one time from nwkNeighborTable. I can't understand when this table is updated.
0 项奖励