From a164c027d2f0cc90c8eeedbdef0ea45397decdbb Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Sat, 24 Apr 2021 05:33:36 +0000 Subject: [PATCH] Fixed bug #1154. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_20.3.x@14279 27425a3e-05d8-49a3-a47f-9c15f0e5edd8 --- os/hal/ports/STM32/STM32L4xx/stm32_registry.h | 12 ++++++------ readme.txt | 1 + 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/os/hal/ports/STM32/STM32L4xx/stm32_registry.h b/os/hal/ports/STM32/STM32L4xx/stm32_registry.h index fdec353fa..8f0fb1e06 100644 --- a/os/hal/ports/STM32/STM32L4xx/stm32_registry.h +++ b/os/hal/ports/STM32/STM32L4xx/stm32_registry.h @@ -72,10 +72,10 @@ #endif /*===========================================================================*/ -/* STM32L432xx, STM32L433xx. */ +/* STM32L432xx. */ /*===========================================================================*/ -#if defined(STM32L432xx) || defined(STM32L433xx) || defined(__DOXYGEN__) +#if defined(STM32L432xx) || defined(__DOXYGEN__) /* Clock attributes.*/ #define STM32_CLOCK_HAS_HSI48 TRUE @@ -294,10 +294,10 @@ #endif /* defined(STM32L432xx) */ /*===========================================================================*/ -/* STM32L443xx. */ +/* STM32L433xx, STM32L443xx. */ /*===========================================================================*/ -#if defined(STM32L443xx) || defined(__DOXYGEN__) +#if defined(STM32L433xx) || defined(STM32L443xx) || defined(__DOXYGEN__) /* Clock attributes.*/ #define STM32_CLOCK_HAS_HSI48 TRUE @@ -357,8 +357,8 @@ #define STM32_HAS_GPIOA TRUE #define STM32_HAS_GPIOB TRUE #define STM32_HAS_GPIOC TRUE -#define STM32_HAS_GPIOD FALSE -#define STM32_HAS_GPIOE FALSE +#define STM32_HAS_GPIOD TRUE +#define STM32_HAS_GPIOE TRUE #define STM32_HAS_GPIOF FALSE #define STM32_HAS_GPIOG FALSE #define STM32_HAS_GPIOH TRUE diff --git a/readme.txt b/readme.txt index ccacaac88..5b4c6d52f 100644 --- a/readme.txt +++ b/readme.txt @@ -74,6 +74,7 @@ ***************************************************************************** *** 20.3.4 *** +- FIX: Fixed errors in STM32L4xx registry (bug #1154). - FIX: Fixed QUADSPI errata fix applied to all platforms (bug #1153). - FIX: Fixed (again) LPUART1 support for STM32H7xx (bug #1113). - FIX: Fixed wrong behavior in Serial-USB driver (bug #1151).