Skip to content

Commit

Permalink
Merge pull request #4458 from drashna/ergodox_ez_matrix_fix
Browse files Browse the repository at this point in the history
Fix Ergodox EZ Matrix scan
  • Loading branch information
ezuk authored Nov 22, 2018
2 parents 87f06e7 + 8837b9d commit b7dd415
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions keyboards/ergodox_ez/matrix.c
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ static void select_row(uint8_t row)
break;
case 11:
DDRD |= (1<<2);
PORTD &= ~(1<<3);
PORTD &= ~(1<<2);
break;
case 12:
DDRD |= (1<<3);
Expand All @@ -392,4 +392,3 @@ static void select_row(uint8_t row)
}
}
}

0 comments on commit b7dd415

Please sign in to comment.