diff options
author | Drashna Jaelre <drashna@live.com> | 2021-09-05 15:35:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-05 23:35:42 +0100 |
commit | 1e1be4c229651703ef7c62784b704a859a3d13cf (patch) | |
tree | 5e4208e6fc1d64278b75bfb29b9015a270501a6e /keyboards/ymdk/sp64 | |
parent | 8d6d8cfadfd1522b3dd2cc8ac1ce7393b45bbe64 (diff) | |
download | qmk_firmware-1e1be4c229651703ef7c62784b704a859a3d13cf.tar.gz qmk_firmware-1e1be4c229651703ef7c62784b704a859a3d13cf.zip |
[Bug] Fix compile issues for boards with custom matrix (#14323)
Diffstat (limited to 'keyboards/ymdk/sp64')
-rw-r--r-- | keyboards/ymdk/sp64/matrix.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/keyboards/ymdk/sp64/matrix.c b/keyboards/ymdk/sp64/matrix.c index 74bddc0578..9a6e37bcdc 100644 --- a/keyboards/ymdk/sp64/matrix.c +++ b/keyboards/ymdk/sp64/matrix.c @@ -38,6 +38,17 @@ static void matrix_select_row(uint8_t row); static uint8_t mcp23018_reset_loop = 0; #endif +// user-defined overridable functions + +__attribute__((weak)) void matrix_init_kb(void) { matrix_init_user(); } + +__attribute__((weak)) void matrix_scan_kb(void) { matrix_scan_user(); } + +__attribute__((weak)) void matrix_init_user(void) {} + +__attribute__((weak)) void matrix_scan_user(void) {} + +// helper functions void matrix_init(void) { // all outputs for rows high |