Fixed ticker_2 blinking

pull/475/head
Przemek Wirkus 2014-08-29 11:22:02 +01:00
parent d8553d2724
commit ff9252a247
1 changed files with 1 additions and 1 deletions

View File

@ -19,8 +19,8 @@ void togglePin(void)
if (ticker_count >= MS_INTERVALS) {
print_char();
ticker_count = 0;
led = !led; // Blink
}
led = !led; // Blink
ticker_count++;
}