From 6a76192fa4bb8c5757c32cf3c65c4e7e7f6c7c3e Mon Sep 17 00:00:00 2001 From: Fred Sundvik Date: Sun, 18 Jun 2017 14:39:58 +0300 Subject: [PATCH] Fix problems with undefined inlines in debug mode --- tmk_core/common/action_util.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tmk_core/common/action_util.c b/tmk_core/common/action_util.c index f76398fb9..148162a51 100644 --- a/tmk_core/common/action_util.c +++ b/tmk_core/common/action_util.c @@ -43,6 +43,10 @@ static int8_t cb_count = 0; //report_keyboard_t keyboard_report = {}; report_keyboard_t *keyboard_report = &(report_keyboard_t){}; +extern inline void add_key(uint8_t key); +extern inline void del_key(uint8_t key); +extern inline void clear_keys(void); + #ifndef NO_ACTION_ONESHOT static int8_t oneshot_mods = 0; static int8_t oneshot_locked_mods = 0;