Skip to content

Commit

Permalink
stm32/stm32_it: Include correct EXTI interrupt handlers for L0 MCUs.
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgeorge committed Aug 29, 2019
1 parent 1fe1ff9 commit 400a128
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ports/stm32/stm32_it.c
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ void RTC_WKUP_IRQHandler(void) {
IRQ_EXIT(RTC_WKUP_IRQn);
}

#if defined(STM32F0)
#if defined(STM32F0) || defined(STM32L0)

void RTC_IRQHandler(void) {
IRQ_ENTER(RTC_IRQn);
Expand Down

0 comments on commit 400a128

Please sign in to comment.