STM32 F030 spi读取不到数据,这个配置有什么问题吗?

2019-07-14 18:02发布



void SPI_CONFIG(void)
{
RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOA|RCC_AHBPeriph_GPIOB|RCC_AHBPeriph_GPIOC|RCC_AHBPeriph_GPIOF,ENABLE);
SPI_InitTypeDef  SPI_InitStructure;
GPIO_InitTypeDef  GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_SPI1, ENABLE);
GPIO_PinAFConfig(GPIOA, GPIO_PinSource4, GPIO_AF_0);
GPIO_PinAFConfig(GPIOA, GPIO_PinSource5, GPIO_AF_0);
  GPIO_PinAFConfig(GPIOA, GPIO_PinSource6, GPIO_AF_0);
  GPIO_PinAFConfig(GPIOA, GPIO_PinSource7, GPIO_AF_0);
//GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5 | GPIO_Pin_6 | GPIO_Pin_7;
  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
  GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
  GPIO_InitStructure.GPIO_PuPd  = GPIO_PuPd_UP;
  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_Level_3;
//SPI
/* SPI SCK pin configuration PA5 */
  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5;
  GPIO_Init(GPIOA, &GPIO_InitStructure);
  /* SPI  MOSI pin configuration PA6 */
  GPIO_InitStructure.GPIO_Pin =  GPIO_Pin_6;
  GPIO_Init(GPIOA, &GPIO_InitStructure);
  /* SPI MISO pin configuration PA7*/
  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_7;
  GPIO_Init(GPIOA, &GPIO_InitStructure);
//GPIO_SetBits(GPIOB,GPIO_Pin_5|GPIO_Pin_6|GPIO_Pin_7);
//spi cs PA4
  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3|GPIO_Pin_4;
  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
  GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
  GPIO_Init(GPIOA, &GPIO_InitStructure);
  GPIO_SetBits(GPIOA, GPIO_Pin_4);  //ÐèÒªÔÚƬѡ¿ªÊ¼Öà 0
/* SPI configuration -------------------------------------------------------*/
  SPI_I2S_DeInit(SPI1);
SPI_Cmd(SPI1, DISABLE);            
  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_256;//
  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);/* Enable SPI*/
  SPI_SSOutputCmd(SPI1, ENABLE);
}

void Thm_3060_Spi_Cs(u8 i)
{
  if(i==0) GPIO_ResetBits(GPIOA, GPIO_Pin_4);
  else GPIO_SetBits(GPIOA, GPIO_Pin_4);
}
void Write_1_Byte(unsigned short reg, unsigned char dat)
{
/* Set  SCS Low */
Thm_3060_Spi_Cs(0);
/* Write Address */
while(SPI_I2S_GetFlagStatus(SPI1, SPI_I2S_FLAG_TXE) == RESET);
SPI_SendData8(SPI1,reg);
while(SPI_I2S_GetFlagStatus(SPI1, SPI_I2S_FLAG_TXE) == RESET);
SPI_SendData8(SPI1,dat);
/* Set  SCS High */
Thm_3060_Spi_Cs(1);
}
unsigned char Read_1_Byte(unsigned short reg)
{
unsigned char i;
/* Set SCS Low */
Thm_3060_Spi_Cs(0);
/* Write Address */
while(SPI_I2S_GetFlagStatus(SPI1, SPI_I2S_FLAG_TXE) == RESET);
SPI_SendData8(SPI1,reg);
/* Read 1 byte */
//while(SPI_I2S_GetFlagStatus(SPI1, SPI_I2S_FLAG_TXE) == RESET);
// SPI_SendData8(SPI1,reg);
while(SPI_I2S_GetFlagStatus(SPI1, SPI_I2S_FLAG_RXNE) == RESET);
i=SPI_ReceiveData8(SPI1);
/* Set SCS High*/
Thm_3060_Spi_Cs(1);
return i;
}
程序调用不会卡死,就是spi读取不到数据?配置有什么问题?还是收发有问题?还是库有问题?求正确历程,工程文件。
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。