简介:SPI是一种高速的,全双工,同步的通信总线,原理和使用简单,占用引脚资源少,是一种常用的通信方式。
STM32通常有2~3个SPI接口
根据STM32手册的使用方法:
1. Enable peripheral clock
2. Enable SCK, MOSI, MISO and NSS GPIO clocks
3. Peripherals alternate function:
Connect the pin to the desired peripherals' Alternate Function (AF)
Call GPIO_Init() function.
4. Program the Polarity, Phase, First Data, Baud Rate Prescaler, Slave Management,Peripheral Mode and CRC Polynomial values using the SPI_Init() function in SPI mode.
5. Configure the FIFO threshold using SPI_RxFIFOThresholdConfig() to select at which hreshold the RXNE event is generated.
6. Enable the NVIC and the corresponding interrupt using the function SPI_I2S_ITConfig() if you need to use interrupt mode.
7. When using the DMAmode
Configure the DMA using DMA_Init() function.
Active the needed channel Request using SPI_I2S_DMACmd() function.
8. Enable the SPI using the SPI_Cmd() function .
9. Enable the DMA using the DMA_Cmd() function when using DMA mode.
10. To use the CRC Hardware calculation feature refer to the Peripheral CRC hardware Calculation subsection.
基于STM32F3discovery开发板,STM32F303VC
使用SPI1,从机连接的是L3GD20陀螺仪,引脚连接:
SPI1_MOSI——PA7
SPI1_SCK——PA5
SPI1_MISO——PA6
NSS——PE3
代码:
void SPI_GPIO_Config(void)
{
//将SPI1_MOSI—PA7,SPI1_SCK—PA5,SPI1_MISO—PA6引脚配置为对应复用功能
//NSS—PE3为从机片选引脚,配置为推挽输出
}
void SPI_Config(void)
{
SPI_InitTypeDef SPI_InitStructure;
SPI_InitStructure.SPI_Direction =SPI_Direction_2Lines_FullDuplex;
SPI_InitStructure.SPI_Mode = SPI_Mode_Master;
SPI_InitStructure.SPI_DataSize = SPI_DataSize_8b;
SPI_InitStructure.SPI_CPOL = SPI_CPOL_Low; //结合从机选择
SPI_InitStructure.SPI_CPHA = SPI_CPHA_1Edge; //结合从机选择
SPI_InitStructure.SPI_NSS = SPI_NSS_Soft;
SPI_InitStructure.SPI_BaudRatePrescaler = SPI_BaudRatePrescaler_8;
SPI_InitStructure.SPI_FirstBit = SPI_FirstBit_MSB;
SPI_InitStructure.SPI_CRCPolynomial = 7;
SPI_I2S_DeInit(SPI1);
SPI_Init(SPI1, &SPI_InitStructure);
SPI_RxFIFOThresholdConfig(SPI1, SPI_RxFIFOThreshold_QF);
SPI_Cmd(SPI1,ENABLE);
}
然后就可以用SPI接口进行收发数据,具体收发方式要根据从机设备决定
需要的时候可以配置中断,DMA等功能发送或接收数据前,先将相应从机的片选信号置零SPI是两个设备移位寄存器的数据交换,接收数据前先向从机发送虚拟字节,收到的数据就是所要读取的数据。
上一篇:STM32按键输入程序
下一篇:STM32F2系列驱动开发——模拟I2C通信
推荐阅读最新更新时间:2024-11-10 17:41
- 热门资源推荐
- 热门放大器推荐
设计资源 培训 开发板 精华推荐
- 适用于汽车应用的 LT3973EMS 3.3V 降压转换器的典型应用
- CN0157
- MPC5606B 3相BLDC开发套件
- 面向工业自动化应用的多协议工业以太网检测(采用 PRU-ICSS)参考设计
- DC1753A-B,基于 LTC3880EUJ 双相单输出的演示板 (DCR SENSE),PMBus 降压,6.5V = VIN = 24V,VOUT = 0.5V 至 3.3V @ 40A
- UMFT601X,FIFO 到 USB 3.0 桥评估板,带 32 位 FIFO 总线,FMC(低引脚数)连接器,用于连接 FT601Q USB 接口 IC
- 使用 Semtech 的 EZ1580 的参考设计
- 使用 MaxLinear, Inc 的 SPX2950 的参考设计
- LT1086IT 调节固定稳压器输出电压的典型应用
- LT1021DCN8-5 具有升压输出电流且无电流限制的电压基准的典型应用