From f49425b15fad19958ab131dbe74846b655721039 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Sun, 20 Nov 2022 08:57:40 +0000 Subject: [PATCH] Fixed bug #1242. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15843 27425a3e-05d8-49a3-a47f-9c15f0e5edd8 --- os/hal/ports/STM32/STM32L4xx/stm32_registry.h | 2 +- readme.txt | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/os/hal/ports/STM32/STM32L4xx/stm32_registry.h b/os/hal/ports/STM32/STM32L4xx/stm32_registry.h index 5268ee033..565b56fda 100644 --- a/os/hal/ports/STM32/STM32L4xx/stm32_registry.h +++ b/os/hal/ports/STM32/STM32L4xx/stm32_registry.h @@ -1413,7 +1413,7 @@ /* RCC attributes.*/ #define STM32_RCC_HAS_HSI16 TRUE -#define STM32_RCC_HAS_HSI48 FALSE +#define STM32_RCC_HAS_HSI48 TRUE #define STM32_RCC_HAS_MSI TRUE #define STM32_RCC_HAS_LSI TRUE #define STM32_RCC_HAS_LSI_PRESCALER FALSE diff --git a/readme.txt b/readme.txt index ceeda6105..a140c773f 100644 --- a/readme.txt +++ b/readme.txt @@ -130,6 +130,8 @@ - NEW: Increased stacks size in RT test suite from 128 to 192. added an option to override the stack size by defining THREADS_STACK_SIZE in the makefile. +- FIX: Fixed HSI48 not enabled for STM32L496/​4A6 (bug #1242) + (backported to 20.3.5)(backported to 21.11.3). - FIX: Fixed problem in STM32 gpt_lld_polled_delay() implementation (bug #1241) (backported to 20.3.5)(backported to 21.11.3). - FIX: Fixed invalid delay loop in STM32G0/WL ADCv5 driver (bug #1240)