Skip to content

Commit

Permalink
cpu/stm32f1: use correct timer device in timer interrupt
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaseichinger committed Dec 3, 2014
1 parent e0a1ab4 commit 18647bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpu/stm32f1/periph/timer.c
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ void TIMER_0_ISR_0(void)
#if TIMER_1_EN
void TIMER_1_ISR_0(void)
{
irq_handler(TIMER_0, TIMER_1_DEV_0, TIMER_1_DEV_1);
irq_handler(TIMER_1, TIMER_1_DEV_0, TIMER_1_DEV_1);
}
#endif

Expand Down

0 comments on commit 18647bb

Please sign in to comment.