diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-04-23 17:20:08 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-04-23 17:20:08 +0000 |
commit | 9a29560d71bec3998ce2720f1966ba111f7af43c (patch) | |
tree | cec80250bb2be8c3a6f996a9c379a56043121c41 | |
parent | bdf2f3eff53f7e2c5117999f17ed16a3b826dcc7 (diff) | |
download | ChibiOS-9a29560d71bec3998ce2720f1966ba111f7af43c.tar.gz ChibiOS-9a29560d71bec3998ce2720f1966ba111f7af43c.tar.bz2 ChibiOS-9a29560d71bec3998ce2720f1966ba111f7af43c.zip |
Fixed bug 3292084.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2898 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/hal/platforms/AVR/serial_lld.c | 2 | ||||
-rw-r--r-- | readme.txt | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/os/hal/platforms/AVR/serial_lld.c b/os/hal/platforms/AVR/serial_lld.c index bafca4537..a61d6b0c2 100644 --- a/os/hal/platforms/AVR/serial_lld.c +++ b/os/hal/platforms/AVR/serial_lld.c @@ -183,7 +183,7 @@ CH_IRQ_HANDLER(USART0_UDRE_vect) { CH_IRQ_PROLOGUE();
chSysLockFromIsr();
- b = sdRequestDataI(&SER1);
+ b = sdRequestDataI(&SD1);
chSysUnlockFromIsr();
if (b < Q_OK)
UCSR0B &= ~(1 << UDRIE);
diff --git a/readme.txt b/readme.txt index 45c099b6f..6da9d5744 100644 --- a/readme.txt +++ b/readme.txt @@ -71,6 +71,8 @@ *****************************************************************************
*** 2.3.2 ***
+- FIX: Fixed wrong identifier in AVR serial driver (bug 3292084)(backported
+ to 2.2.4).
- FIX: Fixed wrong macro check for STM32 XL devices (bug 3291898)(backported
to 2.2.4).
- FIX: Fixed missing state transition in ADC driver (bug 3288149)(backported
|