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:
parent
e9a2d16b2b
commit
24eecd9a1b
|
@ -179,7 +179,7 @@ struct SerialDriver {
|
||||||
*
|
*
|
||||||
* @api
|
* @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.
|
* @brief Direct read from a @p SerialDriver.
|
||||||
|
|
|
@ -64,10 +64,8 @@
|
||||||
*** Releases ***
|
*** Releases ***
|
||||||
*****************************************************************************
|
*****************************************************************************
|
||||||
|
|
||||||
*** 2.3.0 ***
|
|
||||||
- NEW: ARM Cortex-Mx port for IAR compiler.
|
|
||||||
|
|
||||||
*** 2.1.6 ***
|
*** 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
|
- 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
|
register in the upper half word of the can status word for easier
|
||||||
debug.
|
debug.
|
||||||
|
|
Loading…
Reference in New Issue