mirror of
https://github.com/apache/nuttx.git
synced 2026-08-10 23:15:15 +00:00
stm32h7: spi_exchange (no dma) available with CONFIG_STM32H7_SPI_DMATHRESHOLD
This commit is contained in:
parent
a0169e4c37
commit
415fc17e98
1 changed files with 2 additions and 2 deletions
|
|
@ -1603,7 +1603,7 @@ static uint16_t spi_send(FAR struct spi_dev_s *dev, uint16_t wd)
|
|||
*
|
||||
************************************************************************************/
|
||||
|
||||
#if !defined(CONFIG_STM32H7_SPI_DMA) || defined(CONFIG_STM32H7_DMACAPABLE)
|
||||
#if !defined(CONFIG_STM32H7_SPI_DMA) || defined(CONFIG_STM32H7_DMACAPABLE) || defined(CONFIG_STM32H7_SPI_DMATHRESHOLD)
|
||||
#if !defined(CONFIG_STM32H7_SPI_DMA)
|
||||
static void spi_exchange(FAR struct spi_dev_s *dev, FAR const void *txbuffer,
|
||||
FAR void *rxbuffer, size_t nwords)
|
||||
|
|
@ -1686,7 +1686,7 @@ static void spi_exchange_nodma(FAR struct spi_dev_s *dev, FAR const void *txbuff
|
|||
}
|
||||
}
|
||||
}
|
||||
#endif /* !CONFIG_STM32H7_SPI_DMA || CONFIG_STM32H7_DMACAPABLE */
|
||||
#endif /* !CONFIG_STM32H7_SPI_DMA || CONFIG_STM32H7_DMACAPABLE || CONFIG_STM32H7_SPI_DMATHRESHOLD */
|
||||
|
||||
/****************************************************************************
|
||||
* Name: spi_exchange (with DMA capability)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue