Fixed bug 3009145.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1972 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
dcf03f2c44
commit
bf019ef89d
|
@ -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.8
|
PROJECT_NUMBER = 1.5.9
|
||||||
|
|
||||||
# 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.
|
||||||
|
|
|
@ -148,7 +148,7 @@ static void uart1_deinit(void) {
|
||||||
#if USE_STM8_UART3 || defined(__DOXYGEN__)
|
#if USE_STM8_UART3 || defined(__DOXYGEN__)
|
||||||
static void notify3(void) {
|
static void notify3(void) {
|
||||||
|
|
||||||
UART1_CR2 |= 0x80; /* TIEN bit. */
|
UART3_CR2 |= 0x80; /* TIEN bit. */
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
/**
|
/**
|
||||||
* @brief Kernel version string.
|
* @brief Kernel version string.
|
||||||
*/
|
*/
|
||||||
#define CH_KERNEL_VERSION "1.5.8unstable"
|
#define CH_KERNEL_VERSION "1.5.9unstable"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @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 8
|
#define CH_KERNEL_PATCH 9
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Common values.
|
* Common values.
|
||||||
|
|
|
@ -58,6 +58,9 @@
|
||||||
*** Releases ***
|
*** Releases ***
|
||||||
*****************************************************************************
|
*****************************************************************************
|
||||||
|
|
||||||
|
*** 1.5.9 ***
|
||||||
|
- FIX: Fixed STM8 UART3 driver (bug 3009145).
|
||||||
|
|
||||||
*** 1.5.8 ***
|
*** 1.5.8 ***
|
||||||
- FIX: Fixed missing files from ST library zip file (bug 3006629).
|
- FIX: Fixed missing files from ST library zip file (bug 3006629).
|
||||||
- NEW: Added a demo for the AT91SAM7S256 and board files for the Olimex
|
- NEW: Added a demo for the AT91SAM7S256 and board files for the Olimex
|
||||||
|
|
Loading…
Reference in New Issue