Skip to content

Commit 2dab966

Browse files
committed
typo
1 parent 20d4759 commit 2dab966

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

controller-nano/controller-nano.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ ISR( PCINT0_vect ) {
4242

4343
// find changing pins
4444
for( uint8_t index = 0; index < 4; index += 1) {
45-
uint8_t mask = B00000010 << index;
45+
uint8_t mask = B00000010 << index; // Start at PCINT1
4646
if( port_rise & mask ) {
4747
initial_time[index] = current_time;
4848
} else if ( port_fall & mask ) {

0 commit comments

Comments
 (0)