Fixed bug 3569347.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4690 35acf78f-673a-0410-8e92-d51de3d6d3f4master
parent
7956cba1bf
commit
7956d88851
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue