Fixed bug #1077.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@13461 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
parent
1a2da63568
commit
356fde65ae
|
@ -81,7 +81,7 @@ OSAL_IRQ_HANDLER(STM32_EXTI2_HANDLER) {
|
||||||
|
|
||||||
extiGetAndClearGroup1(1U << 2, pr);
|
extiGetAndClearGroup1(1U << 2, pr);
|
||||||
|
|
||||||
exti_serve_irq(pr, 0);
|
exti_serve_irq(pr, 2);
|
||||||
|
|
||||||
OSAL_IRQ_EPILOGUE();
|
OSAL_IRQ_EPILOGUE();
|
||||||
}
|
}
|
||||||
|
|
|
@ -81,7 +81,7 @@ OSAL_IRQ_HANDLER(STM32_EXTI4_HANDLER) {
|
||||||
|
|
||||||
extiGetAndClearGroup1(1U << 4, pr);
|
extiGetAndClearGroup1(1U << 4, pr);
|
||||||
|
|
||||||
exti_serve_irq(pr, 0);
|
exti_serve_irq(pr, 4);
|
||||||
|
|
||||||
OSAL_IRQ_EPILOGUE();
|
OSAL_IRQ_EPILOGUE();
|
||||||
}
|
}
|
||||||
|
|
|
@ -75,5 +75,7 @@
|
||||||
|
|
||||||
*** Next ***
|
*** Next ***
|
||||||
- NEW: Added latency measurement test application:
|
- NEW: Added latency measurement test application:
|
||||||
|
- FIX: Fixed error in EXTIv1 ISRs (bug #1077)
|
||||||
|
(backported to 20.3.1)
|
||||||
- FIX: Fixed problem in chMtxUnlockAllS() (bug #1076)
|
- FIX: Fixed problem in chMtxUnlockAllS() (bug #1076)
|
||||||
(backported to 20.3.1)(backported to 19.1.4)(backported to 18.2.3).
|
(backported to 20.3.1)(backported to 19.1.4)(backported to 18.2.3).
|
||||||
|
|
Loading…
Reference in New Issue