完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
cc1101 2-FSK模式可以接收但是ASK模式不可以,为什么?
用2-FSK模式可以正常收发,下面是我2-fsk的配置 //基频:432.6M FREQ2 FREQ1 FREQ0 //前导字节为2个 MDMCFG1 //better sensitivity MDMCFG2 //Data rate:110 kBaud MDMCFG4 MDMCFG3 //RX filter BW: 325 KHZ MDMCFG4 MDMCFG3 //Deviation: 47.6KHZ //Modulation format: 2-FSK //Channel number: 0x0f const RF_SETTINGS rfSettings = //channel number变了 { 0x00, //FSCTRL2; 0x08, // FSCTRL1 Frequency synthesizer control. 0x00, // FSCTRL0 Frequency synthesizer control. 0x10, // FREQ2 Frequency control word, high byte. 0xA3, // FREQ1 Frequency control word, middle byte. 0x72, // FREQ0 Frequency control word, low byte. 0x5C, // MDMCFG4 Modem configuration. 0x15, // MDMCFG3 Modem configuration. 0x03, // MDMCFG2 Modem configuration. 0x02, // MDMCFG1 Modem configuration. 0xF8, // MDMCFG0 Modem configuration. 0x0f, // CHANNR Channel number. 0x47, // DEVIATN Modem deviation setting (when FSK modulation is enabled). 0xB6, // FREND1 Front end RX configuration. 0x10, // FREND0 Front end RX configuration. 0x18, // MCSM0 Main Radio Control State Machine configuration. 0x1D, // FOCCFG Frequency Offset Compensation Configuration. 0x1C, // BSCFG Bit synchronization Configuration. 0xC7, // AGCCTRL2 AGC control. 0x00, // AGCCTRL1 AGC control. 0xB2, // AGCCTRL0 AGC control. 0xEA, // FSCAL3 Frequency synthesizer calibration. 0x2A, // FSCAL2 Frequency synthesizer calibration. 0x00, // FSCAL1 Frequency synthesizer calibration. 0x11, // FSCAL0 Frequency synthesizer calibration. 0x59, // FSTEST Frequency synthesizer calibration. 0x81, // TEST2 Various test settings. 0x35, // TEST1 Various test settings. 0x09, // TEST0 Various test settings. 0x2E, // IOCFG2 GDO2 output pin configuration. 0x06, // IOCFG0 GDO0 output pin configuration. Refer to SmartRF?Studio User Manual for detailed pseudo register explanation. 0x04, // PKTCTRL1 Packet automation control. 0x45, // PKTCTRL0 Packet automation control. 0x00, // ADDR Device address. 0xFF // PKTLEN Packet length. }; 改成ask模式后,就不能接收了,试过很多速率,带宽等的不同配置,都不能接收成功,也阅读过N022的说明文档,对 MDMCFG2和 FREND1是做过相应修改的,通过调试后发现,当调用 halSpiStrobe(CCxxx0_SRX);//进入接收状态, void halSpiStrobe(INT8U strobe) { CSN = 0; while (MISO);//为低电平说明晶振开始工作 SpiTxRxByte(strobe); //写入命令 CSN = 1; } 就卡在了while (MISO);//为低电平说明晶振开始工作 不能在往下执行了,下面我列一下我的一张ask的配置 const RF_SETTINGS rfSettings = //channel number变了 { 0x00, //FSCTRL2; 0x02, // FSCTRL1 Frequency synthesizer control.频率合成器控制 中频??? 04还是09 0D 怎么算??? 0x00, // FSCTRL0 Frequency synthesizer control. 1 0x10, // FREQ2 Frequency control word, high byte. 1 决定基频 可以根据说明文档计算得到 0xA5, // FREQ1 Frequency control word, middle byte. 0x6A, // FREQ0 Frequency control word, low byte.??? 0xf5, // MDMCFG4 Modem configuration. 调制器配置 由接收滤波器带宽和波特率共同决定 0x83, // MDMCFG3 Modem configuration.????? 调节波特率 0x33, // MDMCFG2 Modem configuration. 模式选择,是否使用曼切斯特编码,传输同步字节设置 33还是3b 0x02, // MDMCFG1 Modem configuration. 高四位决定前导码的最小位数 低四位 指数的频道间隔 0xF8, // MDMCFG0 Modem configuration. 决定通道间隔的频率,一般为200HZ 0x0A, // CHANNR Channel number. 1 通道数选择 0x15, // DEVIATN .调制器偏差设置 低位设置无效?? 0X47, //FIFOTHR 0x56, // FREND1 Front end RX configuration. 前端RX配置 B6???56?? 两者选择和带宽有关 0x11, // FREND0 Front end TX configuration. 和功率寄存器有关 10 11 0x18, // MCSM0 Main Radio Control State Machine configuration. 1主要的无限状态机控制配置 默认 0x14, // FOCCFG Frequency Offset Compensation Configuration.频率偏移补偿配置 1C??14 0x6C, // BSCFG Bit synchronization Configuration. 位同步配置,和时钟有关 1C ??6c 0x04, // AGCCTRL2 AGC control. 04 ????03 0x00, // AGCCTRL1 AGC control. 00 ?????40 0x92, // AGCCTRL0 AGC control. ???? // 0xFB, // WORCTRL新增的自己 0xEA, // FSCAL3 Frequency synthesizer calibration. 频率合成器校准???? EA E9 0x2A, // FSCAL2 Frequency synthesizer calibration. 0x00, // FSCAL1 Frequency synthesizer calibration. 1 0x11, // FSCAL0 Frequency synthesizer calibration. 11 1F 22222222222 0x59, // FSTEST Frequency synthesizer calibration. 频率合成器校准控制 默认 0x81, // TEST2 Various test settings. 各种测试设置 ok 81 88 222222222 0x35, // TEST1 Various test settings. 35 31 22222222222 0x09, // TEST0 Various test settings. 1 0x2E, // IOCFG2 GDO2 output pin configuration. 高阻抗 29??? 0x06, // IOCFG0 GDO0 output pin configuration. 工作在异步串行模式 ?????? 0x04, // PKTCTRL1 Packet automation control. 包的自动化控制 CRC校验用 1 0x45, // PKTCTRL0 Packet automation control. 05??? 0x00, // ADDR Device address. 设备地址 1 0xFF, // PKTLEN Packet length. 数据包长度 }; 网上的很多关于ask配置的例子,我也试过,都不能接收,求大神们帮我看看是什么原因,自己实在分析不出来了 |
|
相关推荐
1个回答
|
|
这些配置可以现在smartRF studio 上面验证码?
|
|
|
|
只有小组成员才能发言,加入小组>>
3441个成员聚集在这个小组
加入小组物联网工程师必备:怎么选择不同的无线连接威廉希尔官方网站 ,本指南帮你忙!
3302 浏览 1 评论
【DFRobot TinkerNode NB-IoT 物联网开发板试用连载】WIFI功能测试
3955 浏览 0 评论
【DFRobot TinkerNode NB-IoT 物联网开发板试用连载】Arduino的替代SublimeText3+STino
3460 浏览 0 评论
使用端口扩展器轻松高效地向IIoT端点添加具有成本效益的子节点
4026 浏览 1 评论
20708 浏览 11 评论
模组有时候复位重启后输出日志为“REBOOT_CAUSE_SECURITY_PMU_POWER_ON_RESET”的原因?
842浏览 2评论
1074浏览 2评论
1074浏览 1评论
1194浏览 1评论
411浏览 1评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2025-1-11 14:52 , Processed in 0.866769 second(s), Total 77, Slave 61 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号