summaryrefslogtreecommitdiffstats
path: root/docs/feature_debounce_algo.md
diff options
context:
space:
mode:
authorAlex Ong <the.onga@gmail.com>2018-08-29 02:49:53 +0200
committerGitHub <noreply@github.com>2018-08-29 02:49:53 +0200
commita55c838961c89097ab849ed6cb1f261791e6b9b4 (patch)
treed6f903119858c8cde356e29bd05dc7207cfb78a5 /docs/feature_debounce_algo.md
parente8e6268765b052a6f6b53d34f0d8afb200989ba7 (diff)
downloadqmk_firmware-a55c838961c89097ab849ed6cb1f261791e6b9b4.tar.gz
qmk_firmware-a55c838961c89097ab849ed6cb1f261791e6b9b4.tar.xz
Added bold in a few areas.
Diffstat (limited to 'docs/feature_debounce_algo.md')
-rw-r--r--docs/feature_debounce_algo.md5
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
TMK_COMMON_SRC += $(DEBOUNCE)/debounce_sym_g.c
endif
```
+
# Debounce selection
-The following is for keyboards where ```SPLIT_KEYBOARD``` is not defined as ```YES```
+The following is for keyboards where ```SPLIT_KEYBOARD``` is **not** defined as ```YES```
| DEBOUNCE_ALGO | CUSTOM_MATRIX | Description | What to do |
| ------------- | -------------| --------------------------------------------------- | ----------------------------- |
@@ -33,7 +34,7 @@ The following is for keyboards where ```SPLIT_KEYBOARD``` is not defined as ```Y
| manual | YES | Same as above | same as above |
| 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 |
-Note:
+**Note**:
If ```SPLIT_KEYBOARD = YES``` is defined, the algorithm inside split_common will be used.
A future pull request will fix this to use the debounce.c code.