1
0
Fork 0

Formated the code with astyle

This commit is contained in:
Arti Zirk 2016-09-10 00:23:14 +03:00
parent dca26ac547
commit 90a1b412df
1 changed files with 3 additions and 2 deletions

View File

@ -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);
}
}