diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-06-23 23:14:21 -0400 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2016-06-23 23:14:21 -0400 |
commit | b68b722325e1f0f68387e161365fa8e31c79b7b2 (patch) | |
tree | 5564db127c39b51922ab48a722cd1d8acb0faad0 /keyboards | |
parent | 13bb6b4b7fdd2b3e419d0f89c93fb980b00eeb9b (diff) |
updates ez's matrix to spec
Diffstat (limited to 'keyboards')
-rw-r--r-- | keyboards/ergodox_ez/matrix.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/keyboards/ergodox_ez/matrix.c b/keyboards/ergodox_ez/matrix.c index 2a7dfba21d..e0de06c349 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 |