diff options
author | Erez Zukerman <bulk@ezuk.org> | 2018-11-22 16:50:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-22 16:50:20 +0100 |
commit | b7dd415c9787c4300db1c31740fa94b93c68c2ac (patch) | |
tree | a1e84427e70dd655bc54452cdeec015257f94b87 | |
parent | 87f06e7297c10020912beaba10013f11d2e8e570 (diff) | |
parent | 8837b9d99e59f9d815992352a28a1a515893e805 (diff) | |
download | qmk_firmware-b7dd415c9787c4300db1c31740fa94b93c68c2ac.tar.gz qmk_firmware-b7dd415c9787c4300db1c31740fa94b93c68c2ac.tar.xz |
Merge pull request #4458 from drashna/ergodox_ez_matrix_fix
Fix Ergodox EZ Matrix scan
-rw-r--r-- | keyboards/ergodox_ez/matrix.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/keyboards/ergodox_ez/matrix.c b/keyboards/ergodox_ez/matrix.c index 2e95c83b6..3ff1c7ab4 100644 --- a/keyboards/ergodox_ez/matrix.c +++ b/keyboards/ergodox_ez/matrix.c @@ -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); @@ -392,4 +392,3 @@ static void select_row(uint8_t row) } } } - |