aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorprecondition <57645186+precondition@users.noreply.github.com>2021-11-25 20:06:50 +0000
committerGitHub <noreply@github.com>2021-11-26 07:06:50 +1100
commit4bac5f53d864a77a6f0fa8a2a046ed7748824ecc (patch)
tree75153ff862bdb0644e9d7622c1b80517e10a30f8 /docs
parent5e9c29da0df045b03ada9278c34f37b22349a6f7 (diff)
downloadqmk_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 'docs')
-rw-r--r--docs/config_options.md2
-rw-r--r--docs/keycodes.md10
-rw-r--r--docs/tap_hold.md80
-rw-r--r--docs/understanding_qmk.md1
4 files changed, 92 insertions, 1 deletions
diff --git a/docs/config_options.md b/docs/config_options.md
index 9f2453b69..b661b55ee 100644
--- a/docs/config_options.md
+++ b/docs/config_options.md
@@ -448,6 +448,8 @@ Use these to enable or disable building certain features. The more you have enab
448 * Disables usb suspend check after keyboard startup. Usually the keyboard waits for the host to wake it up before any tasks are performed. This is useful for split keyboards as one half will not get a wakeup call but must send commands to the master. 448 * Disables usb suspend check after keyboard startup. Usually the keyboard waits for the host to wake it up before any tasks are performed. This is useful for split keyboards as one half will not get a wakeup call but must send commands to the master.
449* `DEFERRED_EXEC_ENABLE` 449* `DEFERRED_EXEC_ENABLE`
450 * Enables deferred executor support -- timed delays before callbacks are invoked. See [deferred execution](custom_quantum_functions.md#deferred-execution) for more information. 450 * Enables deferred executor support -- timed delays before callbacks are invoked. See [deferred execution](custom_quantum_functions.md#deferred-execution) for more information.
451* `DYNAMIC_TAPPING_TERM_ENABLE`
452 * Allows to configure the global tapping term on the fly.
451 453
452## USB Endpoint Limitations 454## USB Endpoint Limitations
453 455
diff --git a/docs/keycodes.md b/docs/keycodes.md
index 926d4fdce..ba06e1b8b 100644
--- a/docs/keycodes.md
+++ b/docs/keycodes.md
@@ -586,6 +586,16 @@ See also: [Mod-Tap](mod_tap.md)
586|`MEH_T(kc)` | |Left Control, Shift and Alt when held, `kc` when tapped | 586|`MEH_T(kc)` | |Left Control, Shift and Alt when held, `kc` when tapped |
587|`HYPR_T(kc)` |`ALL_T(kc)` |Left Control, Shift, Alt and GUI when held, `kc` when tapped - more info [here](https://brettterpstra.com/2012/12/08/a-useful-caps-lock-key/)| 587|`HYPR_T(kc)` |`ALL_T(kc)` |Left Control, Shift, Alt and GUI when held, `kc` when tapped - more info [here](https://brettterpstra.com/2012/12/08/a-useful-caps-lock-key/)|
588 588
589## Tapping Term Keys :id=tapping-term-keys
590
591See also: [Dynamic Tapping Term](tap_hold#dynamic-tapping-term)
592
593| Key | Description |
594|-------------|------------------------------------------------------------------------------------------------------------------------|
595| `DT_PRNT` | "Dynamic Tapping Term Print": Types the current tapping term, in milliseconds |
596| `DT_UP` | "Dynamic Tapping Term Up": Increases the current tapping term by `DYNAMIC_TAPPING_TERM_INCREMENT`ms (5ms by default) |
597| `DT_DOWN` | "Dynamic Tapping Term Down": Decreases the current tapping term by `DYNAMIC_TAPPING_TERM_INCREMENT`ms (5ms by default) |
598
589## RGB Lighting :id=rgb-lighting 599## RGB Lighting :id=rgb-lighting
590 600
591See also: [RGB Lighting](feature_rgblight.md) 601See also: [RGB Lighting](feature_rgblight.md)
diff --git a/docs/tap_hold.md b/docs/tap_hold.md
index a343d0bc3..d206c10cc 100644
--- a/docs/tap_hold.md
+++ b/docs/tap_hold.md
@@ -6,7 +6,9 @@ These options let you modify the behavior of the Tap-Hold keys.
6 6
7## Tapping Term 7## Tapping Term
8 8
9The crux of all of the following features is the tapping term setting. This determines what is a tap and what is a hold. And the exact timing for this to feel natural can vary from keyboard to keyboard, from switch to switch, and from key to key. 9The crux of all of the following features is the tapping term setting. This determines what is a tap and what is a hold. The exact timing for this to feel natural can vary from keyboard to keyboard, from switch to switch, and from key to key.
10
11?> `DYNAMIC_TAPPING_TERM_ENABLE` enables three special keys that can help you quickly find a comfortable tapping term for you. See "Dynamic Tapping Term" for more details.
10 12
11You can set the global time for this by adding the following setting to your `config.h`: 13You can set the global time for this by adding the following setting to your `config.h`:
12 14
@@ -36,6 +38,82 @@ uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {
36} 38}
37``` 39```
38 40
41### Dynamic Tapping Term :id=dynamic-tapping-term
42
43`DYNAMIC_TAPPING_TERM_ENABLE` is a feature you can enable in `rules.mk` that lets you use three special keys in your keymap to configure the tapping term on the fly.
44
45| Key | Description |
46|-------------|------------------------------------------------------------------------------------------------------------------------|
47| `DT_PRNT` | "Dynamic Tapping Term Print": Types the current tapping term, in milliseconds |
48| `DT_UP` | "Dynamic Tapping Term Up": Increases the current tapping term by `DYNAMIC_TAPPING_TERM_INCREMENT`ms (5ms by default) |
49| `DT_DOWN` | "Dynamic Tapping Term Down": Decreases the current tapping term by `DYNAMIC_TAPPING_TERM_INCREMENT`ms (5ms by default) |
50
51Set the tapping term as usual with `#define TAPPING_TERM <value>` in `config.h` and add `DYNAMIC_TAPPING_TERM_ENABLE = yes` in `rules.mk`. Then, place the above three keys somewhere in your keymap and flash the new firmware onto your board.
52
53Now, you can try using your dual-role keys, such as layer-taps and mod-taps, and use `DT_DOWN` and `DT_UP` to adjust the tapping term immediately. If you find that you frequently trigger the modifier of your mod-tap(s) by accident for example, that's a sign that your tapping term may be too low so tap `DT_UP` a few times to increase the tapping term until that no longer happens. On the flip side, if you get superfluous characters when you actually intended to momentarily activate a layer, tap `DT_DOWN` to lower the tapping term. Do note that these keys affect the *global* tapping term, you cannot change the tapping term of a specific key on the fly.
54
55Once you're satisfied with the current tapping term value, open `config.h` and replace whatever value you first wrote for the tapping term by the output of the `DT_PRNT` key.
56
57It's important to update `TAPPING_TERM` with the new value because the adjustments made using `DT_UP` and `DT_DOWN` are not persistent.
58
59The value by which the tapping term increases or decreases when you tap `DT_UP` and `DT_DOWN` can be configured in `config.h` with `#define DYNAMIC_TAPPING_TERM_INCREMENT <new value>`. Note that the tapping term is *not* modified when holding down the tap term keys so if you need to, for example, decrease the current tapping term by 50ms, you cannot just press down and hold `DT_DOWN`; you will have to tap it 10 times in a row with the default increment of 5ms.
60
61If you need more flexibility, nothing prevents you from defining your own custom keys to dynamically change the tapping term.
62
63```c
64enum custom_dynamic_tapping_term_keys = {
65 DT_UP_50 = SAFE_RANGE,
66 DT_DOWN_50,
67 DT_UP_X2,
68 DT_DOWN_X2,
69}
70
71bool process_record_user(uint16_t keycode, keyrecord_t *record) {
72 switch (keycode) {
73 case DT_UP_50:
74 if (record->event.pressed) {
75 g_tapping_term += 50;
76 }
77 break;
78 case DT_DOWN_50:
79 if (record->event.pressed) {
80 g_tapping_term -= 50;
81 }
82 break;
83 case DT_UP_X2:
84 if (record->event.pressed) {
85 g_tapping_term *= 2;
86 }
87 break;
88 case DT_DOWN_X2:
89 if (record->event.pressed) {
90 g_tapping_term /= 2;
91 }
92 break;
93 }
94 return true;
95};
96```
97
98In order for this feature to be effective if you use per-key tapping terms, you need to make a few changes to the syntax of the `get_tapping_term` function. All you need to do is replace every occurrence of `TAPPING_TERM` in the `get_tapping_term` function by lowercase `g_tapping_term`. If you don't do that, you will still see the value typed by `DT_PRNT` go up and down as you configure the tapping term on the fly but you won't feel those changes as they don't get applied. If you can go as low as 10ms and still easily trigger the tap function of a dual-role key, that's a sign that you forgot to make the necessary changes to your `get_tapping_term` function.
99
100For instance, here's how the example `get_tapping_term` shown earlier should look like after the transformation:
101
102```c
103uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {
104 switch (keycode) {
105 case SFT_T(KC_SPC):
106 return g_tapping_term + 1250;
107 case LT(1, KC_GRV):
108 return 130;
109 default:
110 return g_tapping_term;
111 }
112}
113```
114
115The reason being that `TAPPING_TERM` is a macro that expands to a constant integer and thus cannot be changed at runtime whereas `g_tapping_term` is a variable whose value can be changed at runtime. If you want, you can temporarily enable `DYNAMIC_TAPPING_TERM_ENABLE` to find a suitable tapping term value and then disable that feature and revert back to using the classic syntax for per-key tapping term settings.
116
39## Tap-Or-Hold Decision Modes 117## Tap-Or-Hold Decision Modes
40 118
41The code which decides between the tap and hold actions of dual-role keys supports three different modes, in increasing order of preference for the hold action: 119The code which decides between the tap and hold actions of dual-role keys supports three different modes, in increasing order of preference for the hold action:
diff --git a/docs/understanding_qmk.md b/docs/understanding_qmk.md
index e0c2ab7dc..016e3d9fd 100644
--- a/docs/understanding_qmk.md
+++ b/docs/understanding_qmk.md
@@ -157,6 +157,7 @@ The `process_record()` function itself is deceptively simple, but hidden within
157 * [`bool process_combo(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/e1203a222bb12ab9733916164a000ef3ac48da93/quantum/process_keycode/process_combo.c#L115) 157 * [`bool process_combo(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/e1203a222bb12ab9733916164a000ef3ac48da93/quantum/process_keycode/process_combo.c#L115)
158 * [`bool process_printer(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/e1203a222bb12ab9733916164a000ef3ac48da93/quantum/process_keycode/process_printer.c#L77) 158 * [`bool process_printer(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/e1203a222bb12ab9733916164a000ef3ac48da93/quantum/process_keycode/process_printer.c#L77)
159 * [`bool process_auto_shift(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/e1203a222bb12ab9733916164a000ef3ac48da93/quantum/process_keycode/process_auto_shift.c#L94) 159 * [`bool process_auto_shift(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/e1203a222bb12ab9733916164a000ef3ac48da93/quantum/process_keycode/process_auto_shift.c#L94)
160 * `bool process_dynamic_tapping_term(uint16_t keycode, keyrecord_t *record)`
160 * [`bool process_terminal(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/e1203a222bb12ab9733916164a000ef3ac48da93/quantum/process_keycode/process_terminal.c#L264) 161 * [`bool process_terminal(uint16_t keycode, keyrecord_t *record)`](https://github.com/qmk/qmk_firmware/blob/e1203a222bb12ab9733916164a000ef3ac48da93/quantum/process_keycode/process_terminal.c#L264)
161 * [Identify and process Quantum-specific keycodes](https://github.com/qmk/qmk_firmware/blob/e1203a222bb12ab9733916164a000ef3ac48da93/quantum/quantum.c#L291) 162 * [Identify and process Quantum-specific keycodes](https://github.com/qmk/qmk_firmware/blob/e1203a222bb12ab9733916164a000ef3ac48da93/quantum/quantum.c#L291)
162 163