关于原子哥SPI程序的问题,小白不懂!!!!

2019-07-20 18:41发布

我下载了原子哥的探索者程序源码,在用SPI程序的时候发现了一个问题,不是很懂!!
程序里面的SPIWriteRead是8位读写,

然后进入SPI Send和SPI Recevie却是16位!不是很懂!
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
4条回答
xkwy
1楼-- · 2019-07-20 21:25
SPI本身是支持16-bit的,只是作为例程,仅使用其低8位。

1.png
而且,SPIx->DR本身的确是16-bit的寄存器。

2.png


-------------

如果能仔细阅读代码,在SPI初始化里,有设置SPI的位宽:

3.png

很明显。,它可以选择8-bit还是16-bit。

4.png



SHU
2楼-- · 2019-07-21 01:02
xkwy 发表于 2016-11-23 15:50
SPI本身是支持16-bit的,只是作为例程,仅使用其低8位。

意思是,只要在SPI初始化里面设置为8位,即使读写是16位也只是使用其低8位是吗?
xkwy
3楼-- · 2019-07-21 02:37
SHU 发表于 2016-11-23 16:04
意思是,只要在SPI初始化里面设置为8位,即使读写是16位也只是使用其低8位是吗?

是的。第二个截图,已经说的很详细了,摘录如下:

Depending on the data frame format selection bit (DFF in SPI_CR1 register), the data sent or received is either 8-bit or 16-bit. This selection has to be made before enabling the SPI to ensure correct operation.

For an 8-bit data frame, the buffers are 8-bit and only the LSB of the register (SPI_DR[7:0]) is used for transmission/reception. When in reception mode, the MSB of the register (SPI_DR[15:8]) is forced to 0.
For a 16-bit data frame, the buffers are 16-bit and the entire register, SPI_DR[15:0] is used for transmission/reception.



SHU
4楼-- · 2019-07-21 05:39
xkwy 发表于 2016-11-23 16:09
是的。第二个截图,已经说的很详细了,摘录如下:

谢谢,我只是不敢肯定,想有个准确回答!

一周热门 更多>