使用BBB运行 Z-Stack_Linux_Gateway-1.0.1 server 加入End Device, 超过20个就不能在加入了,
请问怎么修改能支持更多的End Device?
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.
这个数量的限制在CC2530上面,你可以修改ZNP工程中的。
如果你的网络里面都是End Device的话,那么每个设备都会直接加到Coordinate上去。
// Maximum number in tables
#if !defined( NWK_MAX_DEVICE_LIST )
#define NWK_MAX_DEVICE_LIST 20 // Maximum number of devices in the
// Assoc/Device list.
#endif
你可以把这个数字改大,但是同时消耗的RAM也会增大,所以要看下RAM的使用情况。
请问你们网络里面会有路由设备吗?