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:
parent
35d05f85d1
commit
37e7834f45
|
@ -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.1.2
|
PROJECT_NUMBER = 2.1.3
|
||||||
|
|
||||||
# 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.
|
||||||
|
|
|
@ -83,7 +83,7 @@ void hal_lld_init(void) {
|
||||||
SysTick_CTRL_ENABLE_Msk |
|
SysTick_CTRL_ENABLE_Msk |
|
||||||
SysTick_CTRL_TICKINT_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();
|
dmaInit();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
/**
|
/**
|
||||||
* @brief Kernel version string.
|
* @brief Kernel version string.
|
||||||
*/
|
*/
|
||||||
#define CH_KERNEL_VERSION "2.1.2unstable"
|
#define CH_KERNEL_VERSION "2.1.3unstable"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Kernel version major number.
|
* @brief Kernel version major number.
|
||||||
|
@ -54,7 +54,7 @@
|
||||||
/**
|
/**
|
||||||
* @brief Kernel version patch number.
|
* @brief Kernel version patch number.
|
||||||
*/
|
*/
|
||||||
#define CH_KERNEL_PATCH 2
|
#define CH_KERNEL_PATCH 3
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Common values.
|
* Common values.
|
||||||
|
|
|
@ -63,6 +63,9 @@
|
||||||
*** Releases ***
|
*** Releases ***
|
||||||
*****************************************************************************
|
*****************************************************************************
|
||||||
|
|
||||||
|
*** 2.1.3 ***
|
||||||
|
- FIX: DMA not initialized under some conditions (bug 3099701).
|
||||||
|
|
||||||
*** 2.1.2 ***
|
*** 2.1.2 ***
|
||||||
- FIX: Fixed typo in memstreams.h (bug 3089567)(backported to 2.0.6).
|
- 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
|
- FIX: Fixed wrong macro check in LPC214x and AT91SAM7 serial drivers (bug
|
||||||
|
|
Loading…
Reference in New Issue