From dc378438889c9282923b51169b88ae3ee7362e36 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Sat, 24 Apr 2021 05:33:24 +0000 Subject: [PATCH] Fixed bug #1154. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@14278 27425a3e-05d8-49a3-a47f-9c15f0e5edd8 --- os/hal/ports/STM32/STM32L4xx/stm32_registry.h | 12 ++++++------ readme.txt | 2 ++ 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/os/hal/ports/STM32/STM32L4xx/stm32_registry.h b/os/hal/ports/STM32/STM32L4xx/stm32_registry.h index fc209f204..5c9118d86 100644 --- a/os/hal/ports/STM32/STM32L4xx/stm32_registry.h +++ b/os/hal/ports/STM32/STM32L4xx/stm32_registry.h @@ -98,10 +98,10 @@ #define STM32_HAS_SPIR FALSE /*===========================================================================*/ -/* STM32L432xx, STM32L433xx. */ +/* STM32L432xx. */ /*===========================================================================*/ -#if defined(STM32L432xx) || defined(STM32L433xx) || defined(__DOXYGEN__) +#if defined(STM32L432xx) || defined(__DOXYGEN__) /* RCC attributes.*/ #define STM32_RCC_HAS_HSI48 TRUE @@ -320,10 +320,10 @@ #endif /* defined(STM32L432xx) */ /*===========================================================================*/ -/* STM32L443xx. */ +/* STM32L433xx, STM32L443xx. */ /*===========================================================================*/ -#if defined(STM32L443xx) || defined(__DOXYGEN__) +#if defined(STM32L433xx) || defined(STM32L443xx) || defined(__DOXYGEN__) /* RCC attributes.*/ #define STM32_RCC_HAS_HSI48 TRUE @@ -383,8 +383,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 6e13275a3..f07bebe18 100644 --- a/readme.txt +++ b/readme.txt @@ -130,6 +130,8 @@ MEMS Accelerometers. - NEW: Safer messages mechanism for sandboxes (to be backported to 20.3.1). - NEW: Added latency measurement test application. +- FIX: Fixed errors in STM32L4xx registry (bug #1154) + (backported to 20.3.4)(backported to 19.1.5). - FIX: Fixed QUADSPI errata fix applied to all platforms (bug #1153) (backported to 20.3.4)(backported to 19.1.5). - FIX: Fixed (again) LPUART1 support for STM32H7xx (bug #1113)