diff options
author | Dan McGregor <dan.mcgregor@usask.ca> | 2015-05-19 11:29:28 -0700 |
---|---|---|
committer | Dan McGregor <dan.mcgregor@usask.ca> | 2015-05-19 11:29:28 -0700 |
commit | c17b8a599e3ec3b0a327bcd66082541f2517ab30 (patch) | |
tree | be5c1ab9fee70948bdd4d5ef1f933f0d08a53247 /tmk_core/common/keymap.c | |
parent | 81137b7a61ef11df023e1f542840a80bfc1ca090 (diff) |
Make action_for_key a weak symbol
Diffstat (limited to 'tmk_core/common/keymap.c')
-rw-r--r-- | tmk_core/common/keymap.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tmk_core/common/keymap.c b/tmk_core/common/keymap.c index 9f4fab5216..a43ca460f2 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: |