From dffaf3f89302ee627cad246896f43b673ff3df33 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Sun, 8 Nov 2020 08:36:28 +0000 Subject: [PATCH] Fixed bug #1130. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_20.3.x@13897 27425a3e-05d8-49a3-a47f-9c15f0e5edd8 --- os/hal/ports/STM32/STM32L4xx/platform_l432.mk | 3 ++- readme.txt | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/os/hal/ports/STM32/STM32L4xx/platform_l432.mk b/os/hal/ports/STM32/STM32L4xx/platform_l432.mk index ba67f9959..960c70fa1 100644 --- a/os/hal/ports/STM32/STM32L4xx/platform_l432.mk +++ b/os/hal/ports/STM32/STM32L4xx/platform_l432.mk @@ -1,7 +1,8 @@ # Required platform files. PLATFORMSRC := $(CHIBIOS)/os/hal/ports/common/ARMCMx/nvic.c \ $(CHIBIOS)/os/hal/ports/STM32/STM32L4xx/stm32_isr.c \ - $(CHIBIOS)/os/hal/ports/STM32/STM32L4xx/hal_lld.c + $(CHIBIOS)/os/hal/ports/STM32/STM32L4xx/hal_lld.c \ + $(CHIBIOS)/os/hal/ports/STM32/STM32L4xx/hal_efl_lld.c # Required include directories. PLATFORMINC := $(CHIBIOS)/os/hal/ports/common/ARMCMx \ diff --git a/readme.txt b/readme.txt index fb68eb7f9..a279dff98 100644 --- a/readme.txt +++ b/readme.txt @@ -74,6 +74,7 @@ ***************************************************************************** *** 20.3.3 *** +- FIX: Fixed missing EFL driver in platform_l432.mk (bug #1130). - FIX: Fixed wrong check in STM32 ST driver (bug #1129). - FIX: Fixed OSAL does not allow 64 bits resolution values (bug #1128). - FIX: Fixed wrong SDMMC RCC macros for STM32H7xx (bug #1127).