Furbish code and comment

Remove unneeded brackets and improve comment.
This commit is contained in:
finga 2021-09-12 01:05:33 +02:00
parent 14dd301657
commit a5d88e879c

View file

@ -695,9 +695,8 @@ ISR(PCINT1_vect) {
TCNT1 = 0;
}
} else { // press
if (!(TCCR1B & (1 << CS10))) {
if (!(TCCR1B & (1 << CS10)))
TCCR1B |= (1 << CS11) | (1 << CS10); // Enable Timer/Counter1
}
}
// TODO: proper debouncing
@ -706,7 +705,7 @@ ISR(PCINT1_vect) {
sei();
}
// Timer/Counter1 compare match A
// Timer/Counter1 compare match A for back event
ISR(TIMER1_COMPA_vect) {
cli();