diff options
author | Alex Ong <the.onga@gmail.com> | 2018-08-29 10:49:53 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-29 10:49:53 +1000 |
commit | a55c838961c89097ab849ed6cb1f261791e6b9b4 (patch) | |
tree | d6f903119858c8cde356e29bd05dc7207cfb78a5 | |
parent | e8e6268765b052a6f6b53d34f0d8afb200989ba7 (diff) | |
download | qmk_firmware-a55c838961c89097ab849ed6cb1f261791e6b9b4.tar.gz qmk_firmware-a55c838961c89097ab849ed6cb1f261791e6b9b4.zip |
Added bold in a few areas.
-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 | ||