使用STM32 mcu和低级LL API通过SPI发送数据

时间:2018-05-31 16:07:09

标签: stm32 spi low-level

我的主板是核心STM32L432KCU板。我尝试使用低级API通过SPI发送字符。 SPI配置为"仅发送主设备"并禁用硬件NSS信号。

不幸的是,我的代码无效(见下文)。当我连接逻辑分析仪时,我什么也看不见。

这是我的代码:

SPI初始化(由CubeMX生成)

void MX_SPI1_Init(void)
{
  LL_SPI_InitTypeDef SPI_InitStruct;

  LL_GPIO_InitTypeDef GPIO_InitStruct;
  /* Peripheral clock enable */
  LL_APB2_GRP1_EnableClock(LL_APB2_GRP1_PERIPH_SPI1);

  /**SPI1 GPIO Configuration  
  PA1   ------> SPI1_SCK
  PA7   ------> SPI1_MOSI 
  */
  GPIO_InitStruct.Pin = SCLK1_to_SpW_Pin|MOSI1_to_SpW_Pin;
  GPIO_InitStruct.Mode = LL_GPIO_MODE_ALTERNATE;
  GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_VERY_HIGH;
  GPIO_InitStruct.OutputType = LL_GPIO_OUTPUT_PUSHPULL;
  GPIO_InitStruct.Pull = LL_GPIO_PULL_NO;
  GPIO_InitStruct.Alternate = LL_GPIO_AF_5;
  LL_GPIO_Init(GPIOA, &GPIO_InitStruct);

  SPI_InitStruct.TransferDirection = LL_SPI_FULL_DUPLEX;
  SPI_InitStruct.Mode = LL_SPI_MODE_MASTER;
  SPI_InitStruct.DataWidth = LL_SPI_DATAWIDTH_8BIT;
  SPI_InitStruct.ClockPolarity = LL_SPI_POLARITY_LOW;
  SPI_InitStruct.ClockPhase = LL_SPI_PHASE_1EDGE;
  SPI_InitStruct.NSS = LL_SPI_NSS_SOFT;
  SPI_InitStruct.BaudRate = LL_SPI_BAUDRATEPRESCALER_DIV8;
  SPI_InitStruct.BitOrder = LL_SPI_LSB_FIRST;
  SPI_InitStruct.CRCCalculation = LL_SPI_CRCCALCULATION_DISABLE;
  SPI_InitStruct.CRCPoly = 7;
  LL_SPI_Init(SPI1, &SPI_InitStruct);

  LL_SPI_SetStandard(SPI1, LL_SPI_PROTOCOL_MOTOROLA);

  LL_SPI_EnableNSSPulseMgt(SPI1);

}

发送一个字符的代码

调用 MX_SPI1_Init()函数后,以下代码在main函数上。

while (!(SPI1->SR & SPI_SR_TXE));
// Send bytes over the SPI
LL_SPI_TransmitData8(SPI1,0b01010111);
// Wait until the transmission is complete
while (SPI1->SR & SPI_SR_BSY);

谢谢。

1 个答案:

答案 0 :(得分:2)

我认为我找到了解决方案,或者至少找到了有效的方法。我的疑问是我忘了启用SPI(写在CR1寄存器,第6位)。 以下是工作代码(当前解决方案):

  // Check if the SPI is enabled
  if((SPI1->CR1 & SPI_CR1_SPE) != SPI_CR1_SPE)
  {
      // If disabled, I enable it
      SET_BIT(SPI1->CR1, SPI_CR1_SPE);
  }

  while (!(SPI1->SR & SPI_SR_TXE));
  // Send bytes over the SPI
  LL_SPI_TransmitData16(SPI1,0xA0A0);
  // Wait until the transmission is complete
  while (SPI1->SR & SPI_SR_BSY);

  // Disable SPI
  CLEAR_BIT(SPI1->CR1, SPI_CR1_SPE);