From f5750bee33de372d2a9958376eeea82286c2aa24 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Tue, 2 Apr 2024 23:30:57 +0200 Subject: [PATCH] Default to timer based interrupt --- main.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/main.c b/main.c index 8e2ee04..df57507 100644 --- a/main.c +++ b/main.c @@ -87,10 +87,9 @@ int main(void) { // Configure the LED pin as an output DDRB |= _BV(LED_PIN); - // Choose one (or both) // configure_interrupt(); - // configure_ovf_interrupt(); - configure_external_interrupt(); + configure_ovf_interrupt(); + // configure_external_interrupt(); // Set the watchdog timer to 8 seconds // wdt_enable(WDTO_8S);