Question
SPI + DMA receive only on STM32F4
Posted on September 13, 2017 at 16:56
In my situation, I need to do SPI receiving with DMA (master side), and not care about Tx. I have three choices in the STM32Cube:
- Full-duplex master
- Half-duplex master
- Receive only master
And I have two choices for HAL with DMA support:
- HAL_SPI_Receive_DMA()
- HAL_SPI_TransmitReceive_DMA()
Anyone can confirm me which combination can send dummy bytes for me to clock the data in?
#spi