diff options
-rw-r--r-- | docs/feature_debounce_algo.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/feature_debounce_algo.md b/docs/feature_debounce_algo.md index 9809bd1bf..2c694cdfb 100644 --- a/docs/feature_debounce_algo.md +++ b/docs/feature_debounce_algo.md | |||
@@ -21,8 +21,9 @@ else # default algorithm | |||
21 | TMK_COMMON_SRC += $(DEBOUNCE)/debounce_sym_g.c | 21 | TMK_COMMON_SRC += $(DEBOUNCE)/debounce_sym_g.c |
22 | endif | 22 | endif |
23 | ``` | 23 | ``` |
24 | |||
24 | # Debounce selection | 25 | # Debounce selection |
25 | The following is for keyboards where ```SPLIT_KEYBOARD``` is not defined as ```YES``` | 26 | The following is for keyboards where ```SPLIT_KEYBOARD``` is **not** defined as ```YES``` |
26 | 27 | ||
27 | | DEBOUNCE_ALGO | CUSTOM_MATRIX | Description | What to do | | 28 | | DEBOUNCE_ALGO | CUSTOM_MATRIX | Description | What to do | |
28 | | ------------- | -------------| --------------------------------------------------- | ----------------------------- | | 29 | | ------------- | -------------| --------------------------------------------------- | ----------------------------- | |
@@ -33,7 +34,7 @@ The following is for keyboards where ```SPLIT_KEYBOARD``` is not defined as ```Y | |||
33 | | manual | YES | Same as above | same as above | | 34 | | manual | YES | Same as above | same as above | |
34 | | sym_g/ eager_pk | YES | You are using your own matrix.c, but included debounce | Write the raw matrix values into matrix.c's matrix | | 35 | | sym_g/ eager_pk | YES | You are using your own matrix.c, but included debounce | Write the raw matrix values into matrix.c's matrix | |
35 | 36 | ||
36 | Note: | 37 | **Note**: |
37 | If ```SPLIT_KEYBOARD = YES``` is defined, the algorithm inside split_common will be used. | 38 | If ```SPLIT_KEYBOARD = YES``` is defined, the algorithm inside split_common will be used. |
38 | A future pull request will fix this to use the debounce.c code. | 39 | A future pull request will fix this to use the debounce.c code. |
39 | 40 | ||