Skip to content

Commit

Permalink
Merge pull request #2127 from thomaseichinger/stm32f1-fix-TIMER_1
Browse files Browse the repository at this point in the history
cpu/stm32f1: use correct timer device in timer interrupt
  • Loading branch information
PeterKietzmann committed Dec 3, 2014
2 parents 43830df + 18647bb commit 8c189ce
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 8c189ce

Please sign in to comment.