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.

zstack linux gateway限制加入End Device的数量

Other Parts Discussed in Thread: Z-STACK, CC2530

使用BBB运行 Z-Stack_Linux_Gateway-1.0.1 server 加入End Device, 超过20个就不能在加入了,

请问怎么修改能支持更多的End Device?

  • 这个数量的限制在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的使用情况。

    请问你们网络里面会有路由设备吗?

  • 请问,这个如何看RAM的使用情况,是看编译的结果.map文件就可以了吗?

    2.就是用一个CC2530做协调器的话能够连接多少节点(节点包含路由和End Device)?

    3.请问ZNP 这个方案的详细资料

    4.ZLL ,ZHA这些协议到底是怎么样的一个东西,麻烦用简单的话说清楚一下。就是应用层是固定的吗