Fixed bug 3292084.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2898 35acf78f-673a-0410-8e92-d51de3d6d3f4master
parent
bdf2f3eff5
commit
9a29560d71
|
@ -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);
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue