mirror of
https://github.com/apache/nuttx.git
synced 2026-09-03 07:33:00 +00:00
Fix for bad type in stm32l4_spi.c
This commit is contained in:
parent
35707e4d48
commit
b2e7f63a7b
1 changed files with 2 additions and 2 deletions
|
|
@ -171,8 +171,8 @@ struct stm32l4_spidev_s
|
|||
#ifdef CONFIG_STM32L4_SPI_DMA
|
||||
volatile uint8_t rxresult; /* Result of the RX DMA */
|
||||
volatile uint8_t txresult; /* Result of the RX DMA */
|
||||
uint8_t rxch; /* The RX DMA channel number */
|
||||
uint8_t txch; /* The TX DMA channel number */
|
||||
uint16_t rxch; /* The RX DMA channel number */
|
||||
uint16_t txch; /* The TX DMA channel number */
|
||||
DMA_HANDLE rxdma; /* DMA channel handle for RX transfers */
|
||||
DMA_HANDLE txdma; /* DMA channel handle for TX transfers */
|
||||
sem_t rxsem; /* Wait for RX DMA to complete */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue