From bf019ef89dcbb31160f8c7dd4a4a2dc3f2ee1a22 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sun, 30 May 2010 10:35:14 +0000 Subject: Fixed bug 3009145. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1972 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- docs/Doxyfile | 2 +- os/hal/platforms/STM8/serial_lld.c | 2 +- os/kernel/include/ch.h | 4 ++-- readme.txt | 3 +++ 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/docs/Doxyfile b/docs/Doxyfile index efef02712..d3fcde64e 100644 --- a/docs/Doxyfile +++ b/docs/Doxyfile @@ -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 = 1.5.8 +PROJECT_NUMBER = 1.5.9 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/os/hal/platforms/STM8/serial_lld.c b/os/hal/platforms/STM8/serial_lld.c index d3b49b1e4..f43c16828 100644 --- a/os/hal/platforms/STM8/serial_lld.c +++ b/os/hal/platforms/STM8/serial_lld.c @@ -148,7 +148,7 @@ static void uart1_deinit(void) { #if USE_STM8_UART3 || defined(__DOXYGEN__) static void notify3(void) { - UART1_CR2 |= 0x80; /* TIEN bit. */ + UART3_CR2 |= 0x80; /* TIEN bit. */ } /** diff --git a/os/kernel/include/ch.h b/os/kernel/include/ch.h index 9198edd75..42d34fe10 100644 --- a/os/kernel/include/ch.h +++ b/os/kernel/include/ch.h @@ -39,7 +39,7 @@ /** * @brief Kernel version string. */ -#define CH_KERNEL_VERSION "1.5.8unstable" +#define CH_KERNEL_VERSION "1.5.9unstable" /** * @brief Kernel version major number. @@ -54,7 +54,7 @@ /** * @brief Kernel version patch number. */ -#define CH_KERNEL_PATCH 8 +#define CH_KERNEL_PATCH 9 /* * Common values. diff --git a/readme.txt b/readme.txt index 44c3dba95..8dca85605 100644 --- a/readme.txt +++ b/readme.txt @@ -58,6 +58,9 @@ *** Releases *** ***************************************************************************** +*** 1.5.9 *** +- FIX: Fixed STM8 UART3 driver (bug 3009145). + *** 1.5.8 *** - FIX: Fixed missing files from ST library zip file (bug 3006629). - NEW: Added a demo for the AT91SAM7S256 and board files for the Olimex -- cgit v1.2.3