New version numbers, fixed bug 3099701.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2311 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2010-10-31 08:34:16 +00:00
parent 35d05f85d1
commit 37e7834f45
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
# if some version control system is used.
PROJECT_NUMBER = 2.1.2
PROJECT_NUMBER = 2.1.3
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.

View File

@ -83,7 +83,7 @@ void hal_lld_init(void) {
SysTick_CTRL_ENABLE_Msk |
SysTick_CTRL_TICKINT_Msk;
#if CH_HAL_USE_ADC || CH_HAL_USE_SPI
#if CH_HAL_USE_ADC || CH_HAL_USE_SPI || CH_HAL_USE_UART
dmaInit();
#endif
}

View File

@ -39,7 +39,7 @@
/**
* @brief Kernel version string.
*/
#define CH_KERNEL_VERSION "2.1.2unstable"
#define CH_KERNEL_VERSION "2.1.3unstable"
/**
* @brief Kernel version major number.
@ -54,7 +54,7 @@
/**
* @brief Kernel version patch number.
*/
#define CH_KERNEL_PATCH 2
#define CH_KERNEL_PATCH 3
/*
* Common values.

View File

@ -63,6 +63,9 @@
*** Releases ***
*****************************************************************************
*** 2.1.3 ***
- FIX: DMA not initialized under some conditions (bug 3099701).
*** 2.1.2 ***
- FIX: Fixed typo in memstreams.h (bug 3089567)(backported to 2.0.6).
- FIX: Fixed wrong macro check in LPC214x and AT91SAM7 serial drivers (bug