diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/action.c | 2 | ||||
-rw-r--r-- | common/keymap.c | 3 | ||||
-rw-r--r-- | common/led.h | 1 |
3 files changed, 3 insertions, 3 deletions
diff --git a/common/action.c b/common/action.c index ec8eeae7bc..220de0f8a0 100644 --- a/common/action.c +++ b/common/action.c @@ -348,7 +348,7 @@ void register_code(uint8_t code) return; } -#ifdef LOCKING_SUPPORT_ENABLE +#ifdef LOCKING_SUPPORT_ENABLE else if (KC_LOCKING_CAPS == code) { #ifdef LOCKING_RESYNC_ENABLE // Resync: ignore if caps lock already is on diff --git a/common/keymap.c b/common/keymap.c index 4c0b61b8c1..7b77972261 100644 --- a/common/keymap.c +++ b/common/keymap.c @@ -27,6 +27,7 @@ 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) { uint8_t keycode = keymap_key_to_keycode(layer, key); @@ -117,8 +118,6 @@ void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) { } - - /* translates keycode to action */ static action_t keycode_to_action(uint8_t keycode) { diff --git a/common/led.h b/common/led.h index 402a247b9a..b84a3ff943 100644 --- a/common/led.h +++ b/common/led.h @@ -26,6 +26,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define USB_LED_SCROLL_LOCK 2 #define USB_LED_COMPOSE 3 #define USB_LED_KANA 4 +#define USB_LED_FUNCTION 5 void led_set(uint8_t usb_led); |