From 4a915c33c4984d2a18e844a6b7908ec581386f74 Mon Sep 17 00:00:00 2001 From: neverxie Date: Thu, 28 Jun 2018 20:14:12 +0800 Subject: [PATCH] fixed two bugs to drv_gpio.c --- bsp/stm32f4xx-HAL/drivers/drv_gpio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bsp/stm32f4xx-HAL/drivers/drv_gpio.c b/bsp/stm32f4xx-HAL/drivers/drv_gpio.c index 4906315ddd..c028f7bac0 100644 --- a/bsp/stm32f4xx-HAL/drivers/drv_gpio.c +++ b/bsp/stm32f4xx-HAL/drivers/drv_gpio.c @@ -32,7 +32,7 @@ static GPIO_TypeDef * get_st_gpio(rt_uint16_t gpio_pin) { - switch(gpio_pin >> 8) + switch(gpio_pin & 0xFF00) { case A: #ifdef GPIOA @@ -87,7 +87,7 @@ static GPIO_TypeDef * get_st_gpio(rt_uint16_t gpio_pin) static void drv_clock_enable(rt_uint16_t gpio_pin) { - switch(gpio_pin >> 8) + switch(gpio_pin & 0xFF00) { case A: #ifdef __HAL_RCC_GPIOA_CLK_ENABLE