From c17b8a599e3ec3b0a327bcd66082541f2517ab30 Mon Sep 17 00:00:00 2001 From: Dan McGregor Date: Tue, 19 May 2015 11:29:28 -0700 Subject: [PATCH] Make action_for_key a weak symbol --- tmk_core/common/action.h | 1 + tmk_core/common/keymap.c | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/tmk_core/common/action.h b/tmk_core/common/action.h index 8a4736d7..e76161c1 100644 --- a/tmk_core/common/action.h +++ b/tmk_core/common/action.h @@ -51,6 +51,7 @@ void action_exec(keyevent_t event); /* action for key */ action_t action_for_key(uint8_t layer, keypos_t key); +action_t action_for_key_default(uint8_t layer, keypos_t key); /* macro */ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt); diff --git a/tmk_core/common/keymap.c b/tmk_core/common/keymap.c index 9f4fab52..a43ca460 100644 --- a/tmk_core/common/keymap.c +++ b/tmk_core/common/keymap.c @@ -27,8 +27,13 @@ static action_t keycode_to_action(uint8_t keycode); /* converts key to action */ +__attribute__((__weak__)) action_t action_for_key(uint8_t layer, keypos_t key) { + return action_for_key_default(layer, key); +} + +action_t action_for_key_default(uint8_t layer, keypos_t key) uint8_t keycode = keymap_key_to_keycode(layer, key); switch (keycode) { case KC_FN0 ... KC_FN31: -- 2.39.3