From 9a29560d71bec3998ce2720f1966ba111f7af43c Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sat, 23 Apr 2011 17:20:08 +0000 Subject: Fixed bug 3292084. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2898 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/platforms/AVR/serial_lld.c | 2 +- readme.txt | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3