本文档为致远电子ZigBee分析仪产品的软件使用说明,该软件实现ZigBee数据包的捕获,分析,信道能量扫描及网络拓扑结构分析等,详细使用说明见《ZigBee分析仪数据手册
上传时间: 2013-11-17
上传用户:小儒尼尼奥
上传时间: 2014-04-19
上传用户:gxy670166755
C++完美演绎 经典算法 如 /* 头文件:my_Include.h */ #include <stdio.h> /* 展开C语言的内建函数指令 */ #define PI 3.1415926 /* 宏常量,在稍后章节再详解 */ #define circle(radius) (PI*radius*radius) /* 宏函数,圆的面积 */ /* 将比较数值大小的函数写在自编include文件内 */ int show_big_or_small (int a,int b,int c) { int tmp if (a>b) { tmp = a a = b b = tmp } if (b>c) { tmp = b b = c c = tmp } if (a>b) { tmp = a a = b b = tmp } printf("由小至大排序之后的结果:%d %d %d\n", a, b, c) } 程序执行结果: 由小至大排序之后的结果:1 2 3 可将内建函数的include文件展开在自编的include文件中 圆圈的面积是=201.0619264
标签: my_Include include define 3.141
上传时间: 2014-01-17
上传用户:epson850
数字运算,判断一个数是否接近素数 A Niven number is a number such that the sum of its digits divides itself. For example, 111 is a Niven number because the sum of its digits is 3, which divides 111. We can also specify a number in another base b, and a number in base b is a Niven number if the sum of its digits divides its value. Given b (2 <= b <= 10) and a number in base b, determine whether it is a Niven number or not. Input Each line of input contains the base b, followed by a string of digits representing a positive integer in that base. There are no leading zeroes. The input is terminated by a line consisting of 0 alone. Output For each case, print "yes" on a line if the given number is a Niven number, and "no" otherwise. Sample Input 10 111 2 110 10 123 6 1000 8 2314 0 Sample Output yes yes no yes no
上传时间: 2015-05-21
上传用户:daguda
源代码\用动态规划算法计算序列关系个数 用关系"<"和"="将3个数a,b,c依次序排列时,有13种不同的序列关系: a=b=c,a=b<c,a<b=v,a<b<c,a<c<b a=c<b,b<a=c,b<a<c,b<c<a,b=c<a c<a=b,c<a<b,c<b<a 若要将n个数依序列,设计一个动态规划算法,计算出有多少种不同的序列关系, 要求算法只占用O(n),只耗时O(n*n).
上传时间: 2013-12-26
上传用户:siguazgb
利尔达显示模块(LSD12864CT)的驱动源码,内含模块数据手册
上传时间: 2014-01-15
上传用户:zhengzg
这儿存在的ThreadX是针对68332的,这是摩托68xxx系列的数据手册,补充一下
上传时间: 2013-11-28
上传用户:小草123
基于ARM9200的CF卡驱动程序,按照9200处理器数据手册上的电路设计,采用直接IO方式访问CF卡,另外有通过PCMCIA总线方式连接CF卡,以后再上传
上传时间: 2014-01-20
上传用户:xiaohuanhuan
基于C51及SL811读写U盘的源程序,开发文档资料,芯片数据手册,测试命令及测试工具,电路原理图,请参C51_SL811_ModeDisk_manual
上传时间: 2014-01-02
上传用户:aappkkee
stc89C51读写AT45DB041的源码,实现了数据手册中的所有命令
上传时间: 2015-12-13
上传用户:chenbhdt