diff options
author | tmk <nobody@nowhere> | 2012-05-27 14:04:28 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2012-05-27 14:04:28 +0900 |
commit | 11f087002052be0aab285a77362085008e853be6 (patch) | |
tree | 07a274b4b6afe97355e7a3b6d4ddd56ab5406efe /host.h | |
parent | 660ea5a2cd6aaf26eb584ae6cfbf777bdf62f0b2 (diff) | |
download | qmk_firmware-11f087002052be0aab285a77362085008e853be6.tar.gz qmk_firmware-11f087002052be0aab285a77362085008e853be6.zip |
FIX: layer switching bug when Fn has no keycode.
- Fn without keycode doesn't need LAYER_SWITCH_DELAY.
Diffstat (limited to 'host.h')
-rw-r--r-- | host.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -37,9 +37,12 @@ uint8_t host_keyboard_leds(void); /* keyboard report operations */ void host_add_key(uint8_t key); +void host_del_key(uint8_t key); void host_add_mod_bit(uint8_t mod); +void host_del_mod_bit(uint8_t mod); void host_set_mods(uint8_t mods); void host_add_code(uint8_t code); +void host_del_code(uint8_t code); void host_swap_keyboard_report(void); void host_clear_keyboard_report(void); uint8_t host_has_anykey(void); |