1
0
Fork 0

Fix tap key using delaying_layer and waiting_key.

This commit is contained in:
tmk 2013-01-13 10:24:20 +09:00
parent 411de9cc22
commit 32633a42c7
5 changed files with 152 additions and 33 deletions

View file

@ -51,10 +51,13 @@ void host_consumer_send(uint16_t data);
void host_add_key(uint8_t key);
void host_del_key(uint8_t key);
void host_clear_keys(void);
uint8_t host_get_mods(void);
void host_add_mods(uint8_t mods);
void host_del_mods(uint8_t mods);
void host_set_mods(uint8_t mods);
void host_clear_mods(void);
uint8_t host_has_anykey(void);
uint8_t host_has_anymod(void);
uint8_t host_get_first_key(void);