Faster toggling

master
mandlm 2016-01-31 15:58:41 +01:00
parent c713fe96f4
commit eb7914190f
1 changed files with 2 additions and 2 deletions

View File

@ -11,9 +11,9 @@ int main()
{ {
PORTB |= (1 << PB3); PORTB |= (1 << PB3);
PORTB |= (1 << PB4); PORTB |= (1 << PB4);
_delay_ms(500); _delay_ms(250);
PORTB &= ~(1 << PB3); PORTB &= ~(1 << PB3);
PORTB &= ~(1 << PB4); PORTB &= ~(1 << PB4);
_delay_ms(500); _delay_ms(250);
} }
} }