aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/platforms
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-10-13 10:56:30 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-10-13 10:56:30 +0000
commitc78662c143424c4f5581b9e641d45ec75f06d704 (patch)
tree5894919940c97f4d793f224eec37dcf2b35ea6eb /os/hal/platforms
parent34ddd705816288f868880b36664d875e1f0861aa (diff)
downloadChibiOS-c78662c143424c4f5581b9e641d45ec75f06d704.tar.gz
ChibiOS-c78662c143424c4f5581b9e641d45ec75f06d704.tar.bz2
ChibiOS-c78662c143424c4f5581b9e641d45ec75f06d704.zip
Fixed bug 3576193.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4756 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms')
-rw-r--r--os/hal/platforms/STM32F0xx/ext_lld_isr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/platforms/STM32F0xx/ext_lld_isr.c b/os/hal/platforms/STM32F0xx/ext_lld_isr.c
index acfc42024..8b8e81db8 100644
--- a/os/hal/platforms/STM32F0xx/ext_lld_isr.c
+++ b/os/hal/platforms/STM32F0xx/ext_lld_isr.c
@@ -83,7 +83,7 @@ CH_IRQ_HANDLER(EXTI2_3_IRQHandler) {
CH_IRQ_PROLOGUE();
- pr = EXTI->PR & ((2 << 0) | (3 << 1));
+ pr = EXTI->PR & ((1 << 2) | (1 << 3));
EXTI->PR = pr;
if (pr & (1 << 2))
EXTD1.config->channels[2].cb(&EXTD1, 2);
@@ -98,7 +98,7 @@ CH_IRQ_HANDLER(EXTI2_3_IRQHandler) {
*
* @isr
*/
-CH_IRQ_HANDLER(EXTI9_5_IRQHandler) {
+CH_IRQ_HANDLER(EXTI4_15_IRQHandler) {
uint32_t pr;
CH_IRQ_PROLOGUE();