完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
亲爱的大家,
这是我读取spi数据的代码: uint8_t ti_TDC1000_SPIByteReadReg(uint8_t addr) { uint8_t read_byte,inst; uint8_t dummy = 0x00; inst = TDC1000_READ_BIT&地址; //读取时确保bit6为0 // GPIO_ResetBits(TI_TDC1000_CSn_PORT,TI_TDC1000_CSn_PIN); // CS enablewhile(SPI_GetFlagStatus(SPI1,SPI_FLAG_TXE)== RESET); SPI_SendData(SPI1,inst); while(SPI_GetFlagStatus(SPI1,SPI_FLAG_TXE)== RESET); SPI_SendData(SPI1,dummy); / *等待接收一个字节* / while(SPI_GetFlagStatus(SPI1,SPI_FLAG_RXNE)== RESET); / *返回从SPI总线读取的字节* / read_byte = SPI_ReceiveData(SPI1);返回read_byte; } 我使用示波器,看到数据读取= 0x45,但在我的代码中 read_byte alway = 0xFF,我认为当spi收到数据时出错了。 以上来自于谷歌翻译 以下为原文 Dear all, here is my code to read spi data: uint8_t TI_TDC1000_SPIByteReadReg(uint8_t addr) { uint8_t read_byte,inst; uint8_t dummy = 0x00; inst = TDC1000_READ_BIT & addr; // for read make sure bit6 is 0 //GPIO_ResetBits(TI_TDC1000_CSn_PORT ,TI_TDC1000_CSn_PIN); // CS enablewhile (SPI_GetFlagStatus(SPI1, SPI_FLAG_TXE)== RESET); SPI_SendData(SPI1, inst);while (SPI_GetFlagStatus(SPI1, SPI_FLAG_TXE)== RESET); SPI_SendData(SPI1, dummy); /* Wait to receive a byte */ while (SPI_GetFlagStatus(SPI1, SPI_FLAG_RXNE) == RESET); /* Return the byte read from the SPI bus */ read_byte = SPI_ReceiveData(SPI1);return read_byte; } I using oscilloscope and see that the data is read = 0x45, but in my code read_byte alway = 0xFF, I think somewhere wrong when spi recieve data. |
|
相关推荐
4个回答
|
|
更改等待RXNE的等待事件。
当TXE置位时,SPI刚刚开始吐出字节(并且可以预先加载新的字节) 设置RXNE时,整个字节已经发货,一个已经到达读取。 您可以切换GPIO以查看何时发生与要调试的SPI时钟相关的每个等待时间。 以上来自于谷歌翻译 以下为原文 Change the wait events for waiting for RXNE. When TXE is set, the SPI is just starting to spit the byte out (and a new one can be pre-loaded) When RXNE is set the whole byte has been shipped and one has arrived for reading. You can toggle a GPIO to view when each wait happens respective to the SPI Clocks to debug. |
|
|
|
嗨,
我收到GPIO并看到SPI_FLAG_RXNE = SET收到所有数据后,我认为这是正确的吗? 你能告诉我这个bug我必须解决的问题吗? “ 更改等待RXNE的等待事件。 “我应该改变什么?谢谢 以上来自于谷歌翻译 以下为原文 Hi, I toogle GPIO and see SPI_FLAG_RXNE = SET after recieved all data, I think that is correct? Could you suggest me what i must fix with this bug? ' Change the wait events for waiting for RXNE. ' what should I change?Thanks |
|
|
|
尝试通过RXNE标志测试替换所有TXE标志测试,看看会发生什么。
以上来自于谷歌翻译 以下为原文 Try replacing all the TXE flag test by RXNE flag test and see what happens. |
|
|
|
|
|
|
|
只有小组成员才能发言,加入小组>>
请教:在使用UDE STK时,单片机使用SPC560D30L1,在配置文件怎么设置或选择?里面只有SPC560D40的选项
2730 浏览 1 评论
3239 浏览 1 评论
请问是否有通过UART连接的两个微处理器之间实现双向值交换的方法?
1808 浏览 1 评论
3647 浏览 6 评论
6035 浏览 21 评论
1339浏览 4评论
198浏览 3评论
对H747I-DISCO写程序时将CN2的st-link复用为usart1,再次烧录时无法检测到stlink怎么解决?
350浏览 2评论
STM32G474RE芯片只是串口发个数据就发烫严重是怎么回事?
442浏览 2评论
STM32处理增量式编码器Z信号如何判断中断是正转的还是反向转的?
273浏览 2评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-23 10:00 , Processed in 1.232608 second(s), Total 83, Slave 67 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号