From 7956d88851e0357c678b9632ce27b7b943500f60 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Wed, 19 Sep 2012 09:10:00 +0000 Subject: Fixed bug 3569347. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4690 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/platforms/STM32/GPIOv2/pal_lld.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'os/hal') diff --git a/os/hal/platforms/STM32/GPIOv2/pal_lld.c b/os/hal/platforms/STM32/GPIOv2/pal_lld.c index c11fedf9c..a08c48103 100644 --- a/os/hal/platforms/STM32/GPIOv2/pal_lld.c +++ b/os/hal/platforms/STM32/GPIOv2/pal_lld.c @@ -72,11 +72,11 @@ static void initgpio(GPIO_TypeDef *gpiop, const stm32_gpio_setup_t *config) { + gpiop->ODR = config->odr; gpiop->MODER = config->moder; gpiop->OTYPER = config->otyper; gpiop->OSPEEDR = config->ospeedr; gpiop->PUPDR = config->pupdr; - gpiop->ODR = config->odr; gpiop->AFRL = config->afrl; gpiop->AFRH = config->afrh; } -- cgit v1.2.3