Fixed bug 2951529.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1607 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
4f37deada8
commit
95058cdab4
|
@ -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.1
|
PROJECT_NUMBER = 1.5.2
|
||||||
|
|
||||||
# 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.
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
/**
|
/**
|
||||||
* @brief Kernel version string.
|
* @brief Kernel version string.
|
||||||
*/
|
*/
|
||||||
#define CH_KERNEL_VERSION "1.5.1unstable"
|
#define CH_KERNEL_VERSION "1.5.2unstable"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Kernel version major number.
|
* @brief Kernel version major number.
|
||||||
|
@ -53,7 +53,7 @@
|
||||||
/**
|
/**
|
||||||
* @brief Kernel version patch number.
|
* @brief Kernel version patch number.
|
||||||
*/
|
*/
|
||||||
#define CH_KERNEL_PATCH 1
|
#define CH_KERNEL_PATCH 2
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Common values.
|
* Common values.
|
||||||
|
|
|
@ -76,7 +76,7 @@ void port_unlock_from_isr(void) {
|
||||||
* @brief Disables all the interrupt sources.
|
* @brief Disables all the interrupt sources.
|
||||||
* @note Of course non maskable interrupt sources are not included.
|
* @note Of course non maskable interrupt sources are not included.
|
||||||
*/
|
*/
|
||||||
void port_disable() {
|
void port_disable(void) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -51,6 +51,10 @@
|
||||||
*** Releases ***
|
*** Releases ***
|
||||||
*****************************************************************************
|
*****************************************************************************
|
||||||
|
|
||||||
|
*** 1.5.2 ***
|
||||||
|
- FIX: Wrong prototype in template file chcore.c (bug 2951529)(backported
|
||||||
|
in 1.4.1).
|
||||||
|
|
||||||
*** 1.5.1 ***
|
*** 1.5.1 ***
|
||||||
- FIX: Fixed insufficient stack space for the idle thread in the ARMCM3 port
|
- FIX: Fixed insufficient stack space for the idle thread in the ARMCM3 port
|
||||||
when compiling without optimizations (bug 2946233)(backported in 1.4.1).
|
when compiling without optimizations (bug 2946233)(backported in 1.4.1).
|
||||||
|
|
Loading…
Reference in New Issue