Fixed bug 3138763.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2486 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2010-12-16 21:09:29 +00:00
parent e9a2d16b2b
commit 24eecd9a1b
2 changed files with 2 additions and 4 deletions

View File

@ -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.

View File

@ -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.