From 3d5fff615be0c13d0808710758f386e863c49500 Mon Sep 17 00:00:00 2001 From: Marco Date: Thu, 12 May 2022 20:26:38 +0200 Subject: [PATCH] Configure PC7 pin as output. --- src/inverter.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/inverter.c b/src/inverter.c index aa6e7f7..4177e68 100644 --- a/src/inverter.c +++ b/src/inverter.c @@ -13,6 +13,7 @@ int main() /* Make PB2 an output pin */ DDRB |= (1 << DDB2); + DDRC |= (1 << DDC7); initCtcTimer0();