diff options
Diffstat (limited to 'tmk_core/common/action_tapping.c')
-rw-r--r-- | tmk_core/common/action_tapping.c | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/tmk_core/common/action_tapping.c b/tmk_core/common/action_tapping.c index c0f1f694b..65ef0a185 100644 --- a/tmk_core/common/action_tapping.c +++ b/tmk_core/common/action_tapping.c | |||
@@ -31,6 +31,10 @@ __attribute__((weak)) uint16_t get_tapping_term(uint16_t keycode) { return TAPPI | |||
31 | __attribute__((weak)) bool get_tapping_force_hold(uint16_t keycode, keyrecord_t *record) { return false; } | 31 | __attribute__((weak)) bool get_tapping_force_hold(uint16_t keycode, keyrecord_t *record) { return false; } |
32 | # endif | 32 | # endif |
33 | 33 | ||
34 | # ifdef PERMISSIVE_HOLD_PER_KEY | ||
35 | __attribute__((weak)) bool get_permissive_hold(uint16_t keycode, keyrecord_t *record) { return false; } | ||
36 | # endif | ||
37 | |||
34 | static keyrecord_t tapping_key = {}; | 38 | static keyrecord_t tapping_key = {}; |
35 | static keyrecord_t waiting_buffer[WAITING_BUFFER_SIZE] = {}; | 39 | static keyrecord_t waiting_buffer[WAITING_BUFFER_SIZE] = {}; |
36 | static uint8_t waiting_buffer_head = 0; | 40 | static uint8_t waiting_buffer_head = 0; |
@@ -115,12 +119,15 @@ bool process_tapping(keyrecord_t *keyp) { | |||
115 | * This can register the key before settlement of tapping, | 119 | * This can register the key before settlement of tapping, |
116 | * useful for long TAPPING_TERM but may prevent fast typing. | 120 | * useful for long TAPPING_TERM but may prevent fast typing. |
117 | */ | 121 | */ |
118 | # if defined(TAPPING_TERM_PER_KEY) || (TAPPING_TERM >= 500) || defined(PERMISSIVE_HOLD) | 122 | # if defined(TAPPING_TERM_PER_KEY) || (TAPPING_TERM >= 500) || defined(PERMISSIVE_HOLD) || defined(PERMISSIVE_HOLD_PER_KEY) |
123 | else if ( | ||
119 | # ifdef TAPPING_TERM_PER_KEY | 124 | # ifdef TAPPING_TERM_PER_KEY |
120 | else if ((get_tapping_term(get_event_keycode(tapping_key.event)) >= 500) && IS_RELEASED(event) && waiting_buffer_typed(event)) | 125 | (get_tapping_term(get_event_keycode(tapping_key.event)) >= 500) && |
121 | # else | 126 | # endif |
122 | else if (IS_RELEASED(event) && waiting_buffer_typed(event)) | 127 | # ifdef PERMISSIVE_HOLD_PER_KEY |
128 | !get_permissive_hold(get_event_keycode(tapping_key.event), keyp) && | ||
123 | # endif | 129 | # endif |
130 | IS_RELEASED(event) && waiting_buffer_typed(event)) | ||
124 | { | 131 | { |
125 | debug("Tapping: End. No tap. Interfered by typing key\n"); | 132 | debug("Tapping: End. No tap. Interfered by typing key\n"); |
126 | process_record(&tapping_key); | 133 | process_record(&tapping_key); |