summaryrefslogtreecommitdiff
path: root/keyboards
diff options
context:
space:
mode:
authorErez Zukerman <bulk@ezuk.org>2018-11-22 10:50:20 -0500
committerGitHub <noreply@github.com>2018-11-22 10:50:20 -0500
commitb7dd415c9787c4300db1c31740fa94b93c68c2ac (patch)
treea1e84427e70dd655bc54452cdeec015257f94b87 /keyboards
parent87f06e7297c10020912beaba10013f11d2e8e570 (diff)
parent8837b9d99e59f9d815992352a28a1a515893e805 (diff)
Merge pull request #4458 from drashna/ergodox_ez_matrix_fix
Fix Ergodox EZ Matrix scan
Diffstat (limited to 'keyboards')
-rw-r--r--keyboards/ergodox_ez/matrix.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/keyboards/ergodox_ez/matrix.c b/keyboards/ergodox_ez/matrix.c
index 2e95c83b65..3ff1c7ab45 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)
}
}
}
-