2018.5.31 nRF905 test
1 试电机:自动控制测试流程(Labview程序,加载扫描仪,自动测试夹具,测试数据保存)

2 USB RF收发器: 含S/N码发送读取功能(S/N:)

The specific use please reference to the manual of application.
3 频谱仪:检测产品发出的RF数据(频偏,功率,谐波)
A Setting : frequency and Spam
Turn on the Spectrum Analyser, and set it to check with display set to centre at 868,4MHz
and a span of e.g. 3MHz.
B Check that the signal power is «strong enough».
A strong enough signal is not easy to define precisely. This is because it depends on a lot of
factors, such as the distance of measurement, the antenna on the spectrum analyser, the angle of
the antenna on the spectrum analyser, the angle of the control unit’s antenna related to the other
antenna, the room/shielded space the measurement is performed in, etc.
We suggest that you make a reference measurement in your test setup with a control unit with radio
board that you know works ok, and then use this reference
(measured in dBm) as the standard that the measured radio signal must match to pass the test. To
know that your reference card is ok, you can e.g. test radio communication with this over a certain
distance (e.g. 20 meters in free air).

4 Radio setup for RF signal generator:
Here is how we set up the configuration register of the radio chip nRF905,
1. The RX being tested will listen at address 254 254 254 254.
2. CRC is enabled, CRC_MODE = 1 (16 CRC check bit).
Setting Value
CH_NO 118
HFREQ_ PLL 1
PA_PWR 3
RX_RED_PWR 0
AUTO_RETRAN 0
RX_AFW 4
TX_AFW 4
RX_PW 32
TX_PW 32
RX_ADDRESS 254 254 254 254
UP_CLK_FREQ 0
UP_CLK_EN 0
XOF 3
CRC_EN 1
CRC_MODE 1
5 PC: Connected with test device .
The following software must be installed:
1. Python 3.4 ( For auto-test)
2. Device programming and testing software (AVR 6.1 , NET 4.0 and USB Driving )
3 Laview and environment
6 Scanister:Created S/N
The tool confirms the serial number of the produced, in addition to reading out production date and
software version number. and all will have a unique serial number printed on the plastic/a
sticker on the plastic. This serial number must also be configured into the device after programming.
The serial number consists of four bytes, in the format XXX XXX XXX XXX, where each group of
three digits XXX have values from 000 to 255. One serial number can for example be "132 000 000
001". The serial number is used for addressing all radio traffic between devices.
2018.5.31 nRF905 test的更多相关文章
- 2018/03/31 每日一个Linux命令 之 date
date 命令主要用于查看和修改时间和时区 -- 这里主要学习基本的查看和设置时间和时区的方法. 直接显示日期 date '+%D' 效果 vagrant@hong:~$ date '+%D' 03/ ...
- 2018.12.31 bzoj3771: Triple(生成函数+fft+容斥原理)
传送门 生成函数经典题. 题意简述:给出nnn个数,可以从中选1/2/31/2/31/2/3个,问所有可能的和对应的方案数. 思路: 令A(x),B(x),C(x)A(x),B(x),C(x)A(x) ...
- [文章汇总]ASP.NET Core框架揭秘[最近更新:2018/10/31]
之前一段时间都在个人公众号账号“大内老A”发布关于ASP.NET Core的系列文章,很多人留言希望能够同步到这里,所以在这里 对这些文章做一个汇总,以便于PC端阅读.如果说微软官方文档主要关于ASP ...
- it's time to change myself now (2018.10.31)
自16年从新屋熊职校毕业,入职深圳某厂从事云存储两年半了.两年半的时间很快,快的感觉一生都会飞快,两年多一直很忙,忙的几乎忘了自己是否正向改变过. 正向改变,or 积极改变,今年十一回家,与几个好友小 ...
- Unity进阶----AssetBundle_02(加载依赖关系及网络资源)(2018/10/31)
网络资源加载: string path ="file://"+ Application.streamingAssetsPath + "\\windows\\123&quo ...
- 2018.12.31 bzoj4001: [TJOI2015]概率论(生成函数)
传送门 生成函数好题. 题意简述:求nnn个点的树的叶子数期望值. 思路: 考虑fnf_nfn表示nnn个节点的树的数量. 所以有递推式f0=1,fn=∑i=0n−1fifn−1−i(n>0) ...
- 2018.12.31 bzoj3992: [SDOI2015]序列统计(生成函数+ntt+快速幂)
传送门 生成函数简单题. 题意:给出一个集合A={a1,a2,...as}A=\{a_1,a_2,...a_s\}A={a1,a2,...as},所有数都在[0,m−1][0,m-1][0,m− ...
- 2018.12.31 NOIP训练 偶数个5(简单数论)
传送门 对于出题人zxyoizxyoizxyoi先%\%%为敬题目需要龟速乘差评. 题意简述:5e55e55e5组数据,给出n,请你求出所有n位数中有偶数个5的有多少,n≤1e18n\le1e18n≤ ...
- 2018.12.31 NOIP训练 czy的后宫6(线性dp)
传送门 题意简述:给一个nnn个数的数列,你可以把它最多分成mmm段,求每段数之和的最大值的最小值,以及满足这个最小值的时候划分数列的方案数. 思路:第一个问题是二分经典问题,不妨设其答案为limli ...
随机推荐
- laravel学习之路1:认证相关
Laravel中Auth::guard()表示什么意思? Auth::check() 是判断用户是否登录的方法,如果使用的默认用户系统,那这样使用没问题. 但是使用两组用户的话,如何使用各组用户的功能 ...
- CLR内存回收总结,代龄机制
关键字:对象可达图,代龄机制,终止化对象. 代龄机制: 0代满了之后,GC开始回收,剩下的对象升级为1代.(只有不可达的对象才会被回收.) 0代再回收几次之后,1代的对象慢慢增多然后达到阈值,GC同时 ...
- bat命令遍历文件和bat参数说明
**************************************************************************************************** ...
- shiro 实现自己定义权限规则校验
<span style="font-family: Arial, Helvetica, sans-serif;">在系统中使用shiro进行权限管理,当用户訪问没有权限 ...
- ios 10 sticker pack application
看了WWDC2016直播,我们发现变得谨慎而开放的苹果在新一版四大平台系统中展示了很多变化,当然重中之重还是伟大的iOS.通过试用iOS10beta版,除了长大了的更强大的Siri主要感受到iMess ...
- SQL SERVER 查看表是否存在
查看表是否存在 if exists(select 1 from sysobjects where id = OBJECT_ID('数据库名称.dbo.表明称')) drop table 为字段添加注释 ...
- why factory pattern and when to use factory pattern
1 factory pattern本质上就是对对象创建进行抽象 抽象的好处是显然的,可以方便用户去获取对象. 2 使用factory pattern的时机 第一,当一个对象的创建依赖于其它很多对象的时 ...
- The hidden layers are either convolutional, pooling or fully connected.
https://en.wikipedia.org/wiki/Convolutional_neural_network Convolutional layers apply a convolution ...
- Redis1 介绍和字典
Redis介绍 redis是一个key-value存储系统.和Memcached类似,它支持存储的value类型相对更多,包括string(字符串).list(列表).set(集合).zset(sor ...
- Android N API预览
Android N for Developers 重要的开发人员功能 多窗体支持 通知 JIT/AOT 编译 高速的应用安装路径 外出瞌睡模式 后台优化 Data Saver 高速设置图块 API 号 ...