refactor(hid): Move hid logic into hid.c

Move the logic for picking the correct hid function into hid.c.
This commit is contained in:
Okke Formsma
2021-03-14 21:39:31 +01:00
committed by Pete Johanson
parent 6150ad65c4
commit 57fca34dc0
3 changed files with 33 additions and 30 deletions

View File

@@ -133,6 +133,7 @@ int zmk_hid_register_mods(zmk_mod_flags_t explicit_modifiers);
int zmk_hid_unregister_mods(zmk_mod_flags_t explicit_modifiers);
int zmk_hid_implicit_modifiers_press(zmk_mod_flags_t implicit_modifiers);
int zmk_hid_implicit_modifiers_release();
int zmk_hid_keyboard_press(zmk_key_t key);
int zmk_hid_keyboard_release(zmk_key_t key);
void zmk_hid_keyboard_clear();
@@ -141,5 +142,8 @@ int zmk_hid_consumer_press(zmk_key_t key);
int zmk_hid_consumer_release(zmk_key_t key);
void zmk_hid_consumer_clear();
int zmk_hid_press(uint32_t usage);
int zmk_hid_release(uint32_t usage);
struct zmk_hid_keyboard_report *zmk_hid_get_keyboard_report();
struct zmk_hid_consumer_report *zmk_hid_get_consumer_report();