各位大侠本人最近在调试
STM32F373VCT6
芯片,需要用到SPI接口,但是调试了1天都没有任何进展,我先上程序,请大家帮忙分析一下,谢谢!
void SPI_Config(void)
{
SPI_InitTypeDef SPI_InitStructure;
GPIO_InitTypeDef GPIO_InitStructure;
/* Enable GPIO clock */
RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOC, ENABLE);
/* Enable the SPI peripheral */
RCC_APB2PeriphClockCmd(RCC_APB2Periph_SPI1, ENABLE);
/* SPI MOSI pin configura
tion */
GPIO_InitStructure.GPIO_Pin = GPIO_PinSource9;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
GPIO_Init(GPIOC, &GPIO_InitStructure);
/* SPI SCK pin configuration */
GPIO_InitStructure.GPIO_Pin = GPIO_PinSource7;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_DOWN;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOC, &GPIO_InitStructure);
/* SPI MISO pin configuration */
GPIO_InitStructure.GPIO_Pin = GPIO_PinSource8;
GPIO_Init(GPIOC, &GPIO_InitStructure);
/* SPI NSS pin configuration */
GPIO_InitStructure.GPIO_Pin = GPIO_PinSource6;
GPIO_Init(GPIOC, &GPIO_InitStructure);
/* SPI pin mappings */
GPIO_PinAFConfig(GPIOC, GPIO_PinSource7, GPIO_AF_5);
GPIO_PinAFConfig(GPIOC, GPIO_PinSource9, GPIO_AF_5);
GPIO_PinAFConfig(GPIOC, GPIO_PinSource8, GPIO_AF_5);
GPIO_PinAFConfig(GPIOC, GPIO_PinSource6, GPIO_AF_5);
/* SPI configuration -------------------------------------------------------*/
SPI_Cmd(SPIx, DISABLE);
SPI_InitStructure.SPI_Direction = SPI_Direction_2Lines_FullDuplex;
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_Hard;
SPI_InitStructure.SPI_BaudRatePrescaler = SPI_BaudRatePrescaler_2;
SPI_InitStructure.SPI_FirstBit = SPI_FirstBit_MSB;
SPI_InitStructure.SPI_CRCPolynomial = 7;
/* Initializes the SPI communication */
SPI_InitStructure.SPI_Mode = SPI_Mode_Master;
SPI_Init(SPI1, &SPI_InitStructure);
/* Initialize the FIFO threshold */
SPI_RxFIFOThresholdConfig(SPI1, SPI_RxFIFOThreshold_QF);
/* Enable the SPI peripheral */
SPI_Cmd(SPI1, ENABLE);
}
void SPI_Bufferwrite(unsigned char *buffer,unsigned char num)
{
unsigned char i;
for(i=0;i
当然是你的SPI时钟配置出问题了:首先你的端口配置有问题,参考代码如下:
/*!< Configure SD_SPI pins: SCK */
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_7; //这里是端口配置
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP; //SCK上拉
GPIO_Init(GPIOC, &GPIO_InitStructure);
/*!< Configure SD_SPI pins: MISO */
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
GPIO_Init(GPIOC, &GPIO_InitStructure);
/*!< Configure SD_SPI pins: MOSI */
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8;
GPIO_Init(GPIOC, &GPIO_InitStructure);
/*!< Configure CS_PIN pin: */
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6; // 用通用IO来配置--不用NSS
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOC, &GPIO_InitStructure);
GPIO_PinAFConfig(GPIOC, GPIO_PinSource7, GPIO_AF_5);
GPIO_PinAFConfig(GPIOC, GPIO_PinSource9, GPIO_AF_5);
GPIO_PinAFConfig(GPIOC, GPIO_PinSource8, GPIO_AF_5);
SPI配置参考:
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_High;
SPI_InitStructure.SPI_CPHA = SPI_CPHA_2Edge;
SPI_InitStructure.SPI_NSS = SPI_NSS_Soft;
SPI_InitStructure.SPI_BaudRatePrescaler = SPI_BaudRatePrescaler_2;
SPI_InitStructure.SPI_FirstBit = SPI_FirstBit_MSB;
SPI_InitStructure.SPI_CRCPolynomial = 7;
SPI_Init(SPI1, &SPI_InitStructure);
SPI_RxFIFOThresholdConfig(SPI1, SPI_RxFIFOThreshold_QF);
SPI_Cmd(SPI1, ENABLE); /*!< SD_SPI enable */
非常感谢,我回头试试,有消息了告诉你!
推荐你看下这里:
STM32 SPI接口的简单实现
STM32的SPI接口
现在SPI是可以工作了,但是为什么我非的要执行
while(SPI_I2S_GetFlagStatus(SPI1, SPI_I2S_FLAG_TXE)==RESET); //ÅжÏÊÇ·ñÒѾ·¢ËÍÍê³É
SPI1->DR = byte;
以上程序后,再进行
while(SPI_I2S_GetFlagStatus(SPI1, SPI_I2S_FLAG_RXNE)==RESET);
buffer = SPI1->DR;
就不会出问题。
但是如果我不首先执行
while(SPI_I2S_GetFlagStatus(SPI1, SPI_I2S_FLAG_TXE)==RESET); //ÅжÏÊÇ·ñÒѾ·¢ËÍÍê³É
SPI1->DR = byte;
程序就会一直卡死在 while(SPI_I2S_GetFlagStatus(SPI1, SPI_I2S_FLAG_RXNE)==RESET);这条程序。
我不知道我的表达是否清楚,能帮我解释一下吗,谢谢!
一周热门 更多>