FIX: layer switching bug when Fn has no keycode.
- Fn without keycode doesn't need LAYER_SWITCH_DELAY.
This commit is contained in:
parent
660ea5a2cd
commit
11f0870020
3 changed files with 75 additions and 19 deletions
3
host.h
3
host.h
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue