Fixed bug 3569347.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4690 35acf78f-673a-0410-8e92-d51de3d6d3f4
master
gdisirio 2012-09-19 09:10:00 +00:00
parent 7956cba1bf
commit 7956d88851
2 changed files with 3 additions and 1 deletions

View File

@ -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;
}

View File

@ -83,6 +83,8 @@
*****************************************************************************
*** 2.5.1 ***
- FIX: Fixed GPIO glitch during PAL initialization (bug 3569347)(backported
to 2.4.3).
- FIX: Fixed Data available event not generated in serial_usb driver (bug
3567992).
- FIX: Fixed STM32F1x rtc_lld_init glitches rtc on hard reset (bug 3567597)