From bf63363c1d7848204b593c9d4396459c2fc39b1c Mon Sep 17 00:00:00 2001 From: Jack Humbert Date: Sat, 22 Sep 2018 23:07:53 -0400 Subject: [PATCH] update matrix --- keyboards/planck/thk/matrix.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/keyboards/planck/thk/matrix.c b/keyboards/planck/thk/matrix.c index cf21c205de..c0e27b665e 100644 --- a/keyboards/planck/thk/matrix.c +++ b/keyboards/planck/thk/matrix.c @@ -1,5 +1,5 @@ /* -Copyright 2017 Luiz Ribeiro +Copyright 2018 Jack Humbert This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -206,3 +206,13 @@ 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(); +}