From 24eecd9a1b1a439c5330d58fe042330f3e0f8298 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Thu, 16 Dec 2010 21:09:29 +0000 Subject: [PATCH] Fixed bug 3138763. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2486 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/include/serial.h | 2 +- readme.txt | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/os/hal/include/serial.h b/os/hal/include/serial.h index 2ad454e86..448ec1654 100644 --- a/os/hal/include/serial.h +++ b/os/hal/include/serial.h @@ -179,7 +179,7 @@ struct SerialDriver { * * @api */ -#define sdPutTimeout(sdp, b, t) chOQPutTimeout(&(sdp)->iqueue, b, t) +#define sdPutTimeout(sdp, b, t) chOQPutTimeout(&(sdp)->oqueue, b, t) /** * @brief Direct read from a @p SerialDriver. diff --git a/readme.txt b/readme.txt index 9ae3b49f8..f06e730a3 100644 --- a/readme.txt +++ b/readme.txt @@ -64,10 +64,8 @@ *** Releases *** ***************************************************************************** -*** 2.3.0 *** -- NEW: ARM Cortex-Mx port for IAR compiler. - *** 2.1.6 *** +- FIX: Fixed error in sdPutTimeout() macro (bug 3138763)(backported in 2.0.9). - NEW: Now the STM32 CAN driver puts the lower half word of the ESR register in the upper half word of the can status word for easier debug.