From 38c17ef7ce4e8f1cf387529d7f12cf46237b77a2 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Tue, 19 Jul 2011 18:48:10 +0000 Subject: [PATCH] Fixed bug 3361039. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3165 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/platforms/STM32/hal_lld_f100.h | 2 +- readme.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/os/hal/platforms/STM32/hal_lld_f100.h b/os/hal/platforms/STM32/hal_lld_f100.h index 571682e38..aad199528 100644 --- a/os/hal/platforms/STM32/hal_lld_f100.h +++ b/os/hal/platforms/STM32/hal_lld_f100.h @@ -343,7 +343,7 @@ #endif /* APB1 frequency check.*/ -#if STM32_PCLK2 > 24000000 +#if STM32_PCLK1 > 24000000 #error "STM32_PCLK1 exceeding maximum frequency (24MHz)" #endif diff --git a/readme.txt b/readme.txt index 177cde14b..54290d850 100644 --- a/readme.txt +++ b/readme.txt @@ -71,6 +71,7 @@ ***************************************************************************** *** 2.3.3 *** +- FIX: Fixed wrong APB1 frequency check (bug 3361039)(backported to 2.2.7). - FIX: Fixed missing state in shell demos (bug 3351556)(backported to 2.2.7). - FIX: Fixed race condition in Cortex-Mx ports (bug 3317500)(backported to 2.2.6).