Skip to content

Commit

Permalink
Fixed bug #1237.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osdn.net/svnroot/chibios/branches/stable_21.11.x@15790 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
  • Loading branch information
gdisirio committed Sep 18, 2022
1 parent e32b5dd commit 0e9d558
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions os/hal/ports/STM32/STM32L4xx/stm32_registry.h
Expand Up @@ -429,7 +429,9 @@
#define STM32_HAS_GPIOK FALSE
#define STM32_GPIO_EN_MASK (RCC_AHB2ENR_GPIOAEN | \
RCC_AHB2ENR_GPIOBEN | \
RCC_AHB2ENR_GPIOCEN)
RCC_AHB2ENR_GPIOCEN | \
RCC_AHB2ENR_GPIODEN | \
RCC_AHB2ENR_GPIOHEN)

/* I2C attributes.*/
#define STM32_HAS_I2C1 TRUE
Expand Down Expand Up @@ -1511,7 +1513,8 @@
RCC_AHB2ENR_GPIOEEN | \
RCC_AHB2ENR_GPIOFEN | \
RCC_AHB2ENR_GPIOGEN | \
RCC_AHB2ENR_GPIOHEN)
RCC_AHB2ENR_GPIOHEN | \
RCC_AHB2ENR_GPIOIEN)

/* I2C attributes.*/
#define STM32_HAS_I2C1 TRUE
Expand Down
1 change: 1 addition & 0 deletions readme.txt
Expand Up @@ -75,6 +75,7 @@

*** 21.11.3 ***
- NEW: Added EFL driver support for STM32F401/411.
- FIX: Fixed missing clock enables for some GPIOS on some STM32L4s (bug #1237).
- FIX: Fixed old bugs in serial driver header (bug #1236).
- FIX: Fixed virtual timers lockup uder rare conditions (bug #1235).
- FIX: Fixed STM32 RTCv2 locks for a second (bug #1234).
Expand Down

0 comments on commit 0e9d558

Please sign in to comment.