From 90a1b412dfa44f25a0dc5c283dc0f9a317da407a Mon Sep 17 00:00:00 2001 From: Arti Zirk Date: Sat, 10 Sep 2016 00:23:14 +0300 Subject: [PATCH] Formated the code with astyle --- src/main.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index efad7bf..cfc4fa3 100644 --- a/src/main.c +++ b/src/main.c @@ -7,12 +7,13 @@ int main (void) { /* set pin 25 of PORTB for output*/ DDRA |= _BV(DDA3); - while(1) { + + while (1) { /* set pin 25 high to turn led on */ PORTA |= _BV(PORTA3); _delay_ms(BLINK_DELAY_MS); /* set pin 25 low to turn led off */ - PORTA &= ~_BV(PORTA3); + PORTA &= ~_BV(PORTA3); _delay_ms(BLINK_DELAY_MS); } }