Fixed bug 3606675.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5394 35acf78f-673a-0410-8e92-d51de3d6d3f4master
parent
34f8704815
commit
fcadc8a00a
|
@ -187,7 +187,7 @@ static void can_lld_rx1_handler(CANDriver *canp) {
|
||||||
chSysLockFromIsr();
|
chSysLockFromIsr();
|
||||||
while (chSemGetCounterI(&canp->rxsem) < 0)
|
while (chSemGetCounterI(&canp->rxsem) < 0)
|
||||||
chSemSignalI(&canp->rxsem);
|
chSemSignalI(&canp->rxsem);
|
||||||
chEvtBroadcastFlagsI(&canp->rxfull_event, CAN_MAILBOX_TO_MASK(1));
|
chEvtBroadcastFlagsI(&canp->rxfull_event, CAN_MAILBOX_TO_MASK(2));
|
||||||
chSysUnlockFromIsr();
|
chSysUnlockFromIsr();
|
||||||
}
|
}
|
||||||
if ((rf1r & CAN_RF1R_FOVR1) > 0) {
|
if ((rf1r & CAN_RF1R_FOVR1) > 0) {
|
||||||
|
|
|
@ -87,6 +87,7 @@
|
||||||
|
|
||||||
*** 2.5.2 ***
|
*** 2.5.2 ***
|
||||||
- FIX: Fixed surprising non-CRLF lines in source (bug 3607380).
|
- FIX: Fixed surprising non-CRLF lines in source (bug 3607380).
|
||||||
|
- FIX: Fixed STM32 CAN broadcast typo (bug 3606675).
|
||||||
- FIX: Fixed STM32 CAN mailbox receive for second fifo (bug 3606673).
|
- FIX: Fixed STM32 CAN mailbox receive for second fifo (bug 3606673).
|
||||||
- FIX: Fixed CAN_USE_SLEEP_MODE compilation problem (bug 3606616)(backported
|
- FIX: Fixed CAN_USE_SLEEP_MODE compilation problem (bug 3606616)(backported
|
||||||
to 2.4.4)(backported to 2.2.10).
|
to 2.4.4)(backported to 2.2.10).
|
||||||
|
|
Loading…
Reference in New Issue