diff options
author | Ryan <fauxpark@gmail.com> | 2021-02-17 07:26:52 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-17 07:26:52 +1100 |
commit | 3345ce268610edbca8f53bc2909c547485531603 (patch) | |
tree | 9d984734f8aa5f2aa964e0151ab48eee936ef34b /tmk_core/common/action.h | |
parent | cdb9d55956c67e1e2a9209522c1a2b30a7d9fb67 (diff) | |
download | qmk_firmware-3345ce268610edbca8f53bc2909c547485531603.tar.gz qmk_firmware-3345ce268610edbca8f53bc2909c547485531603.zip |
Add `tap_code_delay(code, delay)` (#11913)
Co-authored-by: Drashna Jaelre <drashna@live.com>
Diffstat (limited to 'tmk_core/common/action.h')
-rw-r--r-- | tmk_core/common/action.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tmk_core/common/action.h b/tmk_core/common/action.h index 81cd54369..9a991de1c 100644 --- a/tmk_core/common/action.h +++ b/tmk_core/common/action.h | |||
@@ -100,6 +100,7 @@ void process_action(keyrecord_t *record, action_t action); | |||
100 | void register_code(uint8_t code); | 100 | void register_code(uint8_t code); |
101 | void unregister_code(uint8_t code); | 101 | void unregister_code(uint8_t code); |
102 | void tap_code(uint8_t code); | 102 | void tap_code(uint8_t code); |
103 | void tap_code_delay(uint8_t code, uint16_t delay); | ||
103 | void register_mods(uint8_t mods); | 104 | void register_mods(uint8_t mods); |
104 | void unregister_mods(uint8_t mods); | 105 | void unregister_mods(uint8_t mods); |
105 | void register_weak_mods(uint8_t mods); | 106 | void register_weak_mods(uint8_t mods); |