From db5aa80837ddbb46001822d754de40080530e1a2 Mon Sep 17 00:00:00 2001 From: mexsistor <68937128+mexsistor@users.noreply.github.com> Date: Mon, 21 Sep 2020 01:50:41 -0500 Subject: [PATCH] Update matrix.c --- keyboards/mexsistor/ludmila/matrix.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/keyboards/mexsistor/ludmila/matrix.c b/keyboards/mexsistor/ludmila/matrix.c index ae2527c3aea..f58502294b1 100644 --- a/keyboards/mexsistor/ludmila/matrix.c +++ b/keyboards/mexsistor/ludmila/matrix.c @@ -256,3 +256,14 @@ static bool read_encoder_switches(matrix_row_t current_matrix[], uint8_t current return (last_row_value != current_matrix[current_row]); } +void matrix_init_custom(void) { + // TODO: initialize hardware here +} + +bool matrix_scan_custom(matrix_row_t current_matrix[]) { + bool matrix_has_changed = false; + + // TODO: add matrix scanning routine here + + return matrix_has_changed; +}