From 6323e44da3f4a7b95bb477685c938e8319cb4004 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Sat, 13 Feb 2021 08:45:47 +0000 Subject: [PATCH] Fixed bug #1143. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_20.3.x@14043 27425a3e-05d8-49a3-a47f-9c15f0e5edd8 --- os/hal/ports/STM32/LLD/TIMv1/stm32_tim1_9_10_11.inc | 2 +- readme.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/os/hal/ports/STM32/LLD/TIMv1/stm32_tim1_9_10_11.inc b/os/hal/ports/STM32/LLD/TIMv1/stm32_tim1_9_10_11.inc index bebcf542e..f085c9133 100644 --- a/os/hal/ports/STM32/LLD/TIMv1/stm32_tim1_9_10_11.inc +++ b/os/hal/ports/STM32/LLD/TIMv1/stm32_tim1_9_10_11.inc @@ -188,7 +188,7 @@ static inline void tim1_tim9_tim10_tim11_irq_deinit(void) { /* Driver interrupt handlers. */ /*===========================================================================*/ -#if defined(STM32_TIM1_IS_USED) || defined(STM32_TIM19_IS_USED) || \ +#if defined(STM32_TIM1_IS_USED) || defined(STM32_TIM9_IS_USED) || \ defined(__DOXYGEN__) /** * @brief TIM1-BRK, TIM9 interrupt handler. diff --git a/readme.txt b/readme.txt index ba283828f..671b7e495 100644 --- a/readme.txt +++ b/readme.txt @@ -76,6 +76,7 @@ *** 20.3.3 *** - NEW: RT, NIL: Renamed _THREADS_QUEUE_DECL to THREADS_QUEUE_DECL for consistency. +- FIX: Fixed wrong check on STM32 TIM9 timer (bug #1143). - FIX: Fixed FAT time problem in RTC driver (bug #1142). - FIX: Fixed Heap allocation of aligned FIFO objects in chFactory (bug #1141). - FIX: Fixed chsnprintf() sign mode/filler mode conflict (bug #1140).