Skip to content

Commit

Permalink
Update cpu/atmega_common/periph/gpio_ll_irq.c
Browse files Browse the repository at this point in the history
Co-authored-by: Marian Buschsieweke <[email protected]>
  • Loading branch information
hugueslarrive and maribu authored Jul 11, 2023
1 parent 0dc745c commit 444080c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cpu/atmega_common/periph/gpio_ll_irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ static void clear_pending_irqs(uint8_t exti)
EIFR |= 1 << exti;
#elif defined(GIFR)
GIFR |= 1 << (INTF0 + exti);
#else
# error "No support for AVR with neither EIFR nor GIFR"
#endif
}

Expand Down

0 comments on commit 444080c

Please sign in to comment.