簡體   English   中英

STM32:簡單的 SPI 傳輸

[英]STM32: simple SPI transfer

我正在使用 STM32F3DISCOVERY 板,並且試圖更深入地研究 HAL 的抽象。 我制作了一個簡單版本的 function 通過 SPI 傳輸數據,遺憾的是它不起作用(至少我發送到的 DAC 不會改變狀態)而且我不確定我在那里缺少什么。 也許初始化代碼中的某些內容不適用於我的簡單版本。 我很樂意提供任何可以查看的指導或參考資料。 謝謝!

#include <stm32f3xx_hal.h>

#define PINS_SPI GPIO_PIN_5 | GPIO_PIN_7
#define GPIO_PORT GPIOA

/* This is the simplest function I could come up with to do the transfer but I'm clearly missing something here */
uint8_t SPI_SendReceive(SPI_HandleTypeDef *hspi, uint8_t data) {
  /* Loop while DR register in not empty */
  while ((hspi->Instance->SR & SPI_FLAG_TXE) == RESET) {
  }

  /* Send data through the SPI1 peripheral */
  hspi->Instance->DR = data;

  /* Wait to receive data */
  while ((hspi->Instance->SR & SPI_FLAG_RXNE) == RESET) {
  }

  return hspi->Instance->DR;
}

int main() {
  HAL_Init();


  __HAL_RCC_GPIOA_CLK_ENABLE();
  __HAL_RCC_SPI1_CLK_ENABLE();

  static SPI_HandleTypeDef spi = {.Instance = SPI1};
  spi.Init.BaudRatePrescaler = SPI_BAUDRATEPRESCALER_256;
  spi.Init.Direction = SPI_DIRECTION_2LINES;
  spi.Init.CLKPhase = SPI_PHASE_1EDGE;
  spi.Init.CLKPolarity = SPI_POLARITY_LOW;
  spi.Init.CRCCalculation = SPI_CRCCALCULATION_DISABLE;
  spi.Init.DataSize = SPI_DATASIZE_8BIT;
  spi.Init.FirstBit = SPI_FIRSTBIT_MSB;
  spi.Init.NSS = SPI_NSS_HARD_OUTPUT;
  spi.Init.TIMode = SPI_TIMODE_DISABLE;
  spi.Init.Mode = SPI_MODE_MASTER;

  HAL_SPI_Init(&spi);
  __HAL_SPI_ENABLE(&spi);

  GPIO_InitTypeDef GPIO_InitStruct;
  GPIO_InitStruct.Pin = PINS_SPI;
  GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
  GPIO_InitStruct.Pull = GPIO_PULLUP;
  GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH;
  GPIO_InitStruct.Alternate = GPIO_AF5_SPI1;

  HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);

  GPIO_InitStruct.Pin = GPIO_PIN_4;
  GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;

  HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
  
  /* TI 8564 DAC Settings */
  uint8_t cmd1 = 0b00010000;
  /* DAC output value (16-bit) */
  uint16_t cmd23 = 0;
  uint8_t cmd2 = cmd23 >> 8;
  uint8_t cmd3 = cmd23 & 0xff;

  uint8_t command[3] = {cmd1, cmd2, cmd3};

  while (true) {
    HAL_GPIO_WritePin(GPIOA, GPIO_PIN_4, GPIO_PIN_RESET);

    /* This does not work :( */
    SPI_SendReceive(&spi, command[0]);
    SPI_SendReceive(&spi, command[1]);
    SPI_SendReceive(&spi, command[2]);
    
    /* This works! When commenting in the lines above and commenting this out */
    /* HAL_SPI_Transmit(&spi, command, 3, HAL_MAX_DELAY); */

    HAL_GPIO_WritePin(GPIOA, GPIO_PIN_4, GPIO_PIN_SET);

    HAL_Delay(1000);
  }
}

檢查 HAL_SPI_Init 的內容。 這個 function 最有可能調用另一個 function ,它應該進行低級初始化,你有責任自己提供這個 function。 更復雜的是,這個所謂的第二個 function 已經定義了一個“虛擬”弱別名,因此工具鏈不會返回任何錯誤,而是構建一個無法執行任何操作的代碼。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM