diff --git a/cpu/stm32_common/include/periph_cpu_common.h b/cpu/stm32_common/include/periph_cpu_common.h index c9c3014f81ac6d21b2d2b28744c8abd96bb8f9ea..b1f83a032f1e7fc026b7f2d659f06f234812e405 100644 --- a/cpu/stm32_common/include/periph_cpu_common.h +++ b/cpu/stm32_common/include/periph_cpu_common.h @@ -384,10 +384,6 @@ typedef struct { #endif uint8_t bus; /**< APB bus */ uint8_t irqn; /**< IRQ channel */ -#ifdef MODULE_PERIPH_DMA - dma_t dma; /**< Logical DMA stream used for TX */ - uint8_t dma_chan; /**< DMA channel used for TX */ -#endif #ifdef MODULE_STM32_PERIPH_UART_HW_FC gpio_t cts_pin; /**< CTS pin - set to GPIO_UNDEF when not using HW flow control */ gpio_t rts_pin; /**< RTS pin */ @@ -400,6 +396,10 @@ typedef struct { uart_type_t type; /**< hardware module type (USART or LPUART) */ uint32_t clk_src; /**< clock source used for UART */ #endif +#ifdef MODULE_PERIPH_DMA + dma_t dma; /**< Logical DMA stream used for TX */ + uint8_t dma_chan; /**< DMA channel used for TX */ +#endif } uart_conf_t; /**