From b8d54bddccf690b3027578a0689eb647f12aadc5 Mon Sep 17 00:00:00 2001 From: skullY Date: Sat, 29 Feb 2020 21:06:45 -0800 Subject: [PATCH] Fix k_type --- keyboards/k_type/k_type.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/keyboards/k_type/k_type.c b/keyboards/k_type/k_type.c index ef3f431dd9..81f366a149 100644 --- a/keyboards/k_type/k_type.c +++ b/keyboards/k_type/k_type.c @@ -15,3 +15,17 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ #include "k_type.h" + +__attribute__ ((weak)) +void matrix_init_user(void) { +} + +__attribute__ ((weak)) +void matrix_scan_user(void) { +} + +void matrix_init_kb(void) { +} + +void matrix_scan_kb(void) { +}