diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-12-16 21:09:29 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-12-16 21:09:29 +0000 |
commit | 24eecd9a1b1a439c5330d58fe042330f3e0f8298 (patch) | |
tree | 61ad707b5e861ec2c3194c0972beb7e9c91d6d44 | |
parent | e9a2d16b2bc2b2ef8c1b02d787a570e97c78f52d (diff) | |
download | ChibiOS-24eecd9a1b1a439c5330d58fe042330f3e0f8298.tar.gz ChibiOS-24eecd9a1b1a439c5330d58fe042330f3e0f8298.tar.bz2 ChibiOS-24eecd9a1b1a439c5330d58fe042330f3e0f8298.zip |
Fixed bug 3138763.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2486 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/hal/include/serial.h | 2 | ||||
-rw-r--r-- | 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.
|