Fixed bug 3602544.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_2.4.x@5099 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2013-02-02 10:23:22 +00:00
parent 11d17124cb
commit 6d0c7367ed
2 changed files with 1 additions and 10 deletions

View File

@ -1297,16 +1297,6 @@
#error "invalid STM32_RTCSEL value specified"
#endif
/**
* @brief RTC HSE divider setting.
*/
#if ((STM32_RTCPRE_VALUE >= 2) && (STM32_RTCPRE_VALUE <= 31)) || \
defined(__DOXYGEN__)
#define STM32_RTCPRE (STM32_RTCPRE_VALUE << 16)
#else
#error "invalid STM32_RTCPRE value specified"
#endif
/**
* @brief 48MHz frequency.
*/

View File

@ -79,6 +79,7 @@
*****************************************************************************
*** 2.4.4 ***
- FIX: Fixed duplicated code in hal_lld.h (STM32F4xx) (bug 3602544).
- FIX: Fixed compile errors in Posix-GCC demo (bug 3601621).
- FIX: Fixed state checker error in MSP430 port (bug 3601460).
- FIX: Fixed wrong assertion in UART driver (bug 3600789).