Fixed bug 3044758.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2127 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2010-08-14 06:40:28 +00:00
parent 78c71e4870
commit 877faae2cf
3 changed files with 5 additions and 4 deletions

View File

@ -336,8 +336,8 @@
#endif
/* AHB frequency check.*/
#if STM32_HPRE > 72000000
#error "STM32_HPRE exceeding maximum frequency (72MHz)"
#if STM32_HCLK > 72000000
#error "STM32_HCLK exceeding maximum frequency (72MHz)"
#endif
/**

View File

@ -429,8 +429,8 @@
#endif
/* AHB frequency check.*/
#if STM32_HPRE > 72000000
#error "STM32_HPRE exceeding maximum frequency (72MHz)"
#if STM32_HCLK > 72000000
#error "STM32_HCLK exceeding maximum frequency (72MHz)"
#endif
/**

View File

@ -62,6 +62,7 @@
*****************************************************************************
*** 2.1.2 ***
- FIX: Fixed wrong check on STM32_HCLK (bug 3044758)(backported to 2.0.3).
- FIX: Fixed wrong condition check in STM32 PWM driver (bug 3041414)
(backported in 2.0.3).
- FIX: Corrupted IRQ stack in Cortex-Mx port (bug 3041117)(backported to