标签:
一些参考 :
http://wjf88223.blog.163.com/blog/static/351680012011731105424480/
http://blog.csdn.net/tanqiuwei/article/details/7640913
这片文章总结一下学习ZStack自带例子的过程。这些例子位于ZStack的安装目录中,如:
D:\Texas Instruments\ZStack-CC2530-2.5.1a\Projects\zstack\Samples
此外,安装路径下有自带的帮助文档,位于:
D:\Texas Instruments\ZStack-CC2530-2.5.1a\Documents
这些文档对于学习ZStack很有帮助。
在这里总结一些预备知识。来源是自带文档《Z-Stack Developer’s Guide》
f8wconfig.cfg
共享的配置文件,可以配置channel,PAN ID(即网络ID)f8wCoord.cfg
协调器的配置文件f8wEnddev.cfg
终端设备的配置文件f8wRouter.cfg
路由器的配置文件地址分配策略:
MAX_DEPTH
定义了网络的深度depth,协调器的depth是0, 它的子节点的depth是1,以此类推。MAX_CHILDREN
定义了一个router节点的子节点个数的最大值。MAX_ROUTERS
定义了一个coordinator或router所拥有的router的最大个数,MAX_CHILDREN – MAX_ROUTERS
则表示拥有的终端节点的个数。Z-Stack中的地址:
发送数据使用函数AF_DataRequest()
, 参考《Z-Stack API》,函数原型为:
afStatus_t AF_DataRequest(
afAddrType_t *dstAddr, // 目的地址
endPointDesc_t *srcEP, // 源地址
uint16 cID, // Cluster ID ,the message’s cluster ID is likea message ID and is unique with in
the profile.
uint16 len, // 要发送的数据的长度
uint8 *buf, // 指向发送数据的地址
uint8 *transID, //transaction sequence number pointer. This number will be incremented by
this function if the message is buffered to be sent.
uint8 options,
uint8 radius // 跳数 : Maximum number of hops
);
其中afAddrType_t
用来表示一个设备的网络地址。
typedef enum
{
afAddrNotPresent = AddrNotPresent, // ? indiret , binding table...
afAddr16Bit = Addr16Bit, // 用于单播
afAddr64Bit = Addr64Bit,
afAddrGroup = AddrGroup, // 用于多播
afAddrBroadcast = AddrBroadcast // 用于广播
} afAddrMode_t;
typedef struct
{
union
{
uint16 shortAddr; // 上面提到的16bit的网络地址
ZLongAddr_t extAddr;
} addr;
afAddrMode_t addrMode; // 用单播、广播或多播
uint8 endPoint;
uint16 panId; // used for the INTER_PAN feature
} afAddrType_t;
其中addrMode
用来做什么呢? ZigBee中的网络包可以单播、多播、广播,addrMode用于不同的模式。
一些与地址相关的API
Todo:
Bind…
Routing…
binding table, routing table, neighbor table…
实验的主要过程:一个协调器,一个终端节点。
按键:
有两种方法让两个设备进行沟通:
建立联系后,终端节点并会不断的发送信息Hello World
给协调器,协调器收到后会将信息显示到LCD上。
device binding:
设备向coordinator发送binding请求(通过函数ZDApp_SendEndDeviceBindReq()
),然后coordinator会维护一个binding table,这个表用来记录有联系的设备。
device discovery:
call ZDP_MatchDescReq
This call will build and send an Match Descripton Request. Use this function to search for devices/applications that
match something in the input/output cluster list ofan application.
标签:
原文地址:http://blog.csdn.net/huntinux/article/details/51329781