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:
parent
c0942a503c
commit
8b763a660f
|
@ -31,7 +31,7 @@ PROJECT_NAME = ChibiOS/RT
|
|||
# This could be handy for archiving the generated documentation or
|
||||
# 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)
|
||||
# base path where the generated documentation will be put.
|
||||
|
|
|
@ -86,7 +86,7 @@ void hal_lld_init(void) {
|
|||
#if defined(STM32F10X_LD) || defined(STM32F10X_LD_VL) || \
|
||||
defined(STM32F10X_MD) || defined(STM32F10X_MD_VL) || \
|
||||
defined(STM32F10X_HD) || defined(STM32F10X_XL) || \
|
||||
defined(STM32F10X_CL) || defined(__DOXYGEN__)
|
||||
defined(__DOXYGEN__)
|
||||
/*
|
||||
* Clocks initialization for the LD, MD and HD sub-families.
|
||||
*/
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
/**
|
||||
* @brief Kernel version string.
|
||||
*/
|
||||
#define CH_KERNEL_VERSION "2.2.4"
|
||||
#define CH_KERNEL_VERSION "2.2.5"
|
||||
|
||||
/**
|
||||
* @brief Kernel version major number.
|
||||
|
@ -61,7 +61,7 @@
|
|||
/**
|
||||
* @brief Kernel version patch number.
|
||||
*/
|
||||
#define CH_KERNEL_PATCH 4
|
||||
#define CH_KERNEL_PATCH 5
|
||||
|
||||
/*
|
||||
* Common values.
|
||||
|
|
|
@ -68,6 +68,9 @@
|
|||
*** Releases ***
|
||||
*****************************************************************************
|
||||
|
||||
*** 2.2.5 ***
|
||||
- FIX: Fixed STM32F107 demo build failure (bug 3294998).
|
||||
|
||||
*** 2.2.4 ***
|
||||
- FIX: Fixed CodeBlocks demo broken (bug 3304718).
|
||||
- FIX: Fixed race condition in output queues (bug 3303908).
|
||||
|
|
Loading…
Reference in New Issue