summaryrefslogtreecommitdiffstats
path: root/keyboards
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2016-06-24 05:14:21 +0200
committerJack Humbert <jack.humb@gmail.com>2016-06-24 05:14:21 +0200
commitb68b722325e1f0f68387e161365fa8e31c79b7b2 (patch)
tree5564db127c39b51922ab48a722cd1d8acb0faad0 /keyboards
parent13bb6b4b7fdd2b3e419d0f89c93fb980b00eeb9b (diff)
downloadqmk_firmware-b68b722325e1f0f68387e161365fa8e31c79b7b2.tar.gz
qmk_firmware-b68b722325e1f0f68387e161365fa8e31c79b7b2.tar.xz
updates ez's matrix to spec
Diffstat (limited to 'keyboards')
-rw-r--r--keyboards/ergodox_ez/matrix.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/keyboards/ergodox_ez/matrix.c b/keyboards/ergodox_ez/matrix.c
index 2a7dfba21..e0de06c34 100644
--- a/keyboards/ergodox_ez/matrix.c
+++ b/keyboards/ergodox_ez/matrix.c
@@ -62,11 +62,19 @@ uint32_t matrix_scan_count;
__attribute__ ((weak))
+void matrix_init_user(void) {}
+
+__attribute__ ((weak))
+void matrix_scan_user(void) {}
+
+__attribute__ ((weak))
void matrix_init_kb(void) {
+ matrix_init_user();
}
__attribute__ ((weak))
void matrix_scan_kb(void) {
+ matrix_scan_user();
}
inline