Fixed bug 3015109.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2011 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2010-06-12 05:56:13 +00:00
parent d54e8eb64d
commit c07c8ab6df
3 changed files with 8 additions and 5 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 = 1.5.9 PROJECT_NUMBER = 2.1.0
# 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

@ -39,22 +39,22 @@
/** /**
* @brief Kernel version string. * @brief Kernel version string.
*/ */
#define CH_KERNEL_VERSION "1.5.9unstable" #define CH_KERNEL_VERSION "2.1.0unstable"
/** /**
* @brief Kernel version major number. * @brief Kernel version major number.
*/ */
#define CH_KERNEL_MAJOR 1 #define CH_KERNEL_MAJOR 2
/** /**
* @brief Kernel version minor number. * @brief Kernel version minor number.
*/ */
#define CH_KERNEL_MINOR 5 #define CH_KERNEL_MINOR 1
/** /**
* @brief Kernel version patch number. * @brief Kernel version patch number.
*/ */
#define CH_KERNEL_PATCH 9 #define CH_KERNEL_PATCH 0
/* /*
* Common values. * Common values.

View File

@ -58,6 +58,9 @@
*** Releases *** *** Releases ***
***************************************************************************** *****************************************************************************
*** 2.1.0 ***
- FIX: Fixed assertion in adcStop() (bug 3015109)(backported in 2.0.0).
*** 1.5.9 *** *** 1.5.9 ***
- FIX: Fixed STM8 baud rate setup error (bug 3010990). - FIX: Fixed STM8 baud rate setup error (bug 3010990).
- FIX: Fixed STM8 UART3 driver (bug 3009145). - FIX: Fixed STM8 UART3 driver (bug 3009145).