diff options
author | precondition <57645186+precondition@users.noreply.github.com> | 2021-11-25 20:06:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-26 07:06:50 +1100 |
commit | 4bac5f53d864a77a6f0fa8a2a046ed7748824ecc (patch) | |
tree | 75153ff862bdb0644e9d7622c1b80517e10a30f8 /quantum/quantum.h | |
parent | 5e9c29da0df045b03ada9278c34f37b22349a6f7 (diff) | |
download | qmk_firmware-4bac5f53d864a77a6f0fa8a2a046ed7748824ecc.tar.gz qmk_firmware-4bac5f53d864a77a6f0fa8a2a046ed7748824ecc.zip |
New feature: `DYNAMIC_TAPPING_TERM_ENABLE` (#11036)
* New feature: `DYNAMIC_TAPPING_TERM_ENABLE`
3 new quantum keys to configure the tapping term on the fly.
* Replace sprintf call in tapping_term_report by get_u16_str
* Replace tab with 4 spaces
Diffstat (limited to 'quantum/quantum.h')
-rw-r--r-- | quantum/quantum.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/quantum.h b/quantum/quantum.h index 45050ac0e..6927884e2 100644 --- a/quantum/quantum.h +++ b/quantum/quantum.h | |||
@@ -125,6 +125,10 @@ extern layer_state_t layer_state; | |||
125 | # include "process_auto_shift.h" | 125 | # include "process_auto_shift.h" |
126 | #endif | 126 | #endif |
127 | 127 | ||
128 | #ifdef DYNAMIC_TAPPING_TERM_ENABLE | ||
129 | # include "process_dynamic_tapping_term.h" | ||
130 | #endif | ||
131 | |||
128 | #ifdef COMBO_ENABLE | 132 | #ifdef COMBO_ENABLE |
129 | # include "process_combo.h" | 133 | # include "process_combo.h" |
130 | #endif | 134 | #endif |