From 7c2c3ddc341a14d8db1a6c1833c799f40cb468f4 Mon Sep 17 00:00:00 2001 From: bernard Date: Sun, 20 Jul 2014 16:53:49 +0800 Subject: [PATCH] [BSP] fix UART3 issue in STM32F40x. --- bsp/stm32f40x/drivers/usart.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bsp/stm32f40x/drivers/usart.c b/bsp/stm32f40x/drivers/usart.c index ab03c92b1..cd221ab0a 100644 --- a/bsp/stm32f40x/drivers/usart.c +++ b/bsp/stm32f40x/drivers/usart.c @@ -165,8 +165,8 @@ static void GPIO_Configuration(void) GPIO_Init(UART3_GPIO, &GPIO_InitStructure); /* Connect alternate function */ - GPIO_PinAFConfig(UART2_GPIO, UART3_TX_PIN_SOURCE, GPIO_AF_USART3); - GPIO_PinAFConfig(UART2_GPIO, UART3_RX_PIN_SOURCE, GPIO_AF_USART3); + GPIO_PinAFConfig(UART3_GPIO, UART3_TX_PIN_SOURCE, GPIO_AF_USART3); + GPIO_PinAFConfig(UART3_GPIO, UART3_RX_PIN_SOURCE, GPIO_AF_USART3); #endif } -- GitLab