Fixed bug 3294998.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_2.2.x@2999 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2011-05-24 17:30:00 +00:00
parent c0942a503c
commit 8b763a660f
4 changed files with 7 additions and 4 deletions

View File

@ -31,7 +31,7 @@ PROJECT_NAME = ChibiOS/RT
# This could be handy for archiving the generated documentation or # This could be handy for archiving the generated documentation or
# if some version control system is used. # if some version control system is used.
PROJECT_NUMBER = 2.2.4 PROJECT_NUMBER = 2.2.5
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put. # base path where the generated documentation will be put.

View File

@ -86,7 +86,7 @@ void hal_lld_init(void) {
#if defined(STM32F10X_LD) || defined(STM32F10X_LD_VL) || \ #if defined(STM32F10X_LD) || defined(STM32F10X_LD_VL) || \
defined(STM32F10X_MD) || defined(STM32F10X_MD_VL) || \ defined(STM32F10X_MD) || defined(STM32F10X_MD_VL) || \
defined(STM32F10X_HD) || defined(STM32F10X_XL) || \ defined(STM32F10X_HD) || defined(STM32F10X_XL) || \
defined(STM32F10X_CL) || defined(__DOXYGEN__) defined(__DOXYGEN__)
/* /*
* Clocks initialization for the LD, MD and HD sub-families. * Clocks initialization for the LD, MD and HD sub-families.
*/ */

View File

@ -46,7 +46,7 @@
/** /**
* @brief Kernel version string. * @brief Kernel version string.
*/ */
#define CH_KERNEL_VERSION "2.2.4" #define CH_KERNEL_VERSION "2.2.5"
/** /**
* @brief Kernel version major number. * @brief Kernel version major number.
@ -61,7 +61,7 @@
/** /**
* @brief Kernel version patch number. * @brief Kernel version patch number.
*/ */
#define CH_KERNEL_PATCH 4 #define CH_KERNEL_PATCH 5
/* /*
* Common values. * Common values.

View File

@ -68,6 +68,9 @@
*** Releases *** *** Releases ***
***************************************************************************** *****************************************************************************
*** 2.2.5 ***
- FIX: Fixed STM32F107 demo build failure (bug 3294998).
*** 2.2.4 *** *** 2.2.4 ***
- FIX: Fixed CodeBlocks demo broken (bug 3304718). - FIX: Fixed CodeBlocks demo broken (bug 3304718).
- FIX: Fixed race condition in output queues (bug 3303908). - FIX: Fixed race condition in output queues (bug 3303908).