diff options
author | Drashna Jaelre <drashna@live.com> | 2021-01-04 16:37:20 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-04 16:37:20 -0800 |
commit | 810eafad121bda333c53490e2d8a29f3a83d9c19 (patch) | |
tree | 975b8bd9c846d13f30da944e873326e0e0f69fa8 /tmk_core/common | |
parent | c38fe492426676cf101eeb024f7f33d8e98c445f (diff) | |
download | qmk_firmware-810eafad121bda333c53490e2d8a29f3a83d9c19.tar.gz qmk_firmware-810eafad121bda333c53490e2d8a29f3a83d9c19.zip |
Fix Tap-Hold Configs (#11127)
* Add proper prototypes for Tap-Hold Per Key functions
* Fix handwired/tennie default keymap
* Remove unneeded references
* Fix tapping term per key check in space cadet
* Pre-emptive fix for tap dance
* Fix marksard/leftover30
* Replace hard coded tapping term with define
Diffstat (limited to 'tmk_core/common')
-rw-r--r-- | tmk_core/common/action_tapping.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/tmk_core/common/action_tapping.h b/tmk_core/common/action_tapping.h index 087090f80..4d10c668a 100644 --- a/tmk_core/common/action_tapping.h +++ b/tmk_core/common/action_tapping.h | |||
@@ -22,8 +22,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
22 | # define TAPPING_TERM 200 | 22 | # define TAPPING_TERM 200 |
23 | #endif | 23 | #endif |
24 | 24 | ||
25 | //#define RETRO_TAPPING // Tap anyway, even after TAPPING_TERM, as long as there was no interruption | ||
26 | |||
27 | /* tap count needed for toggling a feature */ | 25 | /* tap count needed for toggling a feature */ |
28 | #ifndef TAPPING_TOGGLE | 26 | #ifndef TAPPING_TOGGLE |
29 | # define TAPPING_TOGGLE 5 | 27 | # define TAPPING_TOGGLE 5 |
@@ -33,6 +31,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
33 | 31 | ||
34 | #ifndef NO_ACTION_TAPPING | 32 | #ifndef NO_ACTION_TAPPING |
35 | uint16_t get_event_keycode(keyevent_t event, bool update_layer_cache); | 33 | uint16_t get_event_keycode(keyevent_t event, bool update_layer_cache); |
36 | uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record); | ||
37 | void action_tapping_process(keyrecord_t record); | 34 | void action_tapping_process(keyrecord_t record); |
35 | |||
36 | uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record); | ||
37 | bool get_permissive_hold(uint16_t keycode, keyrecord_t *record); | ||
38 | bool get_ignore_mod_tap_interrupt(uint16_t keycode, keyrecord_t *record); | ||
39 | bool get_tapping_force_hold(uint16_t keycode, keyrecord_t *record); | ||
40 | bool get_retro_tapping(uint16_t keycode, keyrecord_t *record); | ||
38 | #endif | 41 | #endif |