From 527d32153375e1a14a7a3770ac3f8785a9212ac7 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Mon, 15 Nov 2021 15:08:20 +0100 Subject: [PATCH 1/2] boards/stm32f769i-disco: fix mistake in Kconfig clock config --- boards/stm32f769i-disco/clock.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards/stm32f769i-disco/clock.config b/boards/stm32f769i-disco/clock.config index f5a94e5bf2..ea639c8bd1 100644 --- a/boards/stm32f769i-disco/clock.config +++ b/boards/stm32f769i-disco/clock.config @@ -2,4 +2,4 @@ # to remain in 216MHz max clock. CONFIG_CUSTOM_PLL_PARAMS=y CONFIG_CLOCK_PLL_M=25 -CONFIG_CLOCK_PLL_M=432 +CONFIG_CLOCK_PLL_N=432 From d9c78201cc3ef7953d62a3b2a41ed30579d204d0 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Mon, 15 Nov 2021 15:09:04 +0100 Subject: [PATCH 2/2] boards/stm32f769i-disco: remove wrong DMA configuration --- boards/stm32f769i-disco/include/periph_conf.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/boards/stm32f769i-disco/include/periph_conf.h b/boards/stm32f769i-disco/include/periph_conf.h index 963e307768..dc77edb2db 100644 --- a/boards/stm32f769i-disco/include/periph_conf.h +++ b/boards/stm32f769i-disco/include/periph_conf.h @@ -56,15 +56,10 @@ static const uart_conf_t uart_config[] = { .tx_af = GPIO_AF7, .bus = APB2, .irqn = USART1_IRQn, -#ifdef UART_USE_DMA - .dma_stream = 4, - .dma_chan = 4 -#endif } }; #define UART_0_ISR (isr_usart1) -#define UART_0_DMA_ISR (isr_dma1_stream4) #define UART_NUMOF ARRAY_SIZE(uart_config) /** @} */