From 9a365f36841c0f5a2cd18c8881bff951a37f5d7d Mon Sep 17 00:00:00 2001 From: gdisirio Date: Tue, 7 Feb 2012 19:05:28 +0000 Subject: [PATCH] Fixed bug 3485278. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3938 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/platforms/STM32F1xx/hal_lld_f105_f107.h | 1 + readme.txt | 2 ++ 2 files changed, 3 insertions(+) diff --git a/os/hal/platforms/STM32F1xx/hal_lld_f105_f107.h b/os/hal/platforms/STM32F1xx/hal_lld_f105_f107.h index 9ca38657b..88193fa8a 100644 --- a/os/hal/platforms/STM32F1xx/hal_lld_f105_f107.h +++ b/os/hal/platforms/STM32F1xx/hal_lld_f105_f107.h @@ -703,6 +703,7 @@ /* PLL3 activation conditions.*/ #if STM32_I2S_CLOCK_REQUIRED || \ (STM32_MCOSEL == STM32_MCOSEL_PLL3DIV2) || \ + (STM32_MCOSEL == STM32_MCOSEL_PLL3) || \ defined(__DOXYGEN__) /** * @brief PLL3 activation flag. diff --git a/readme.txt b/readme.txt index 242980227..750854cf7 100644 --- a/readme.txt +++ b/readme.txt @@ -79,6 +79,8 @@ ***************************************************************************** *** 2.5.0 *** +- FIX: Fixed missing PLL3 check in STM32F107 HAL (bug 3485278)(backported to + 2.2.8 and 2.4.1). - FIX: Fixed ADC maximum frequency limit in STM32F2/F4 ADC drivers (bug 3484947)(backported to 2.4.1). - FIX: Fixed various minor documentation errors (bug 3484942)(backported