summaryrefslogtreecommitdiff
path: root/docs/feature_debounce_type.md
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2021-08-09 19:46:18 +0100
committerGitHub <noreply@github.com>2021-08-09 19:46:18 +0100
commitc0628c2820b436550f62af5f6b7fae1f66b0bf8b (patch)
tree015f943e8586e27dee0b07bb705732e93ceb53e2 /docs/feature_debounce_type.md
parent7c691d82bf21f8bdbc98d4193d2ad3956528c25a (diff)
Remove backwards compatibility of debounce names (#13877)
* Remove backwards compatibility of debounce names * Update docs * Update keyboards/keymaps
Diffstat (limited to 'docs/feature_debounce_type.md')
-rw-r--r--docs/feature_debounce_type.md17
1 files changed, 0 insertions, 17 deletions
diff --git a/docs/feature_debounce_type.md b/docs/feature_debounce_type.md
index 306185fe83..f37a785b1e 100644
--- a/docs/feature_debounce_type.md
+++ b/docs/feature_debounce_type.md
@@ -92,15 +92,6 @@ susceptible to noise, you must choose a debounce method that will also mitigate
## Debounce algorithms supported by QMK
QMK supports multiple debounce algorithms through its debounce API.
-The logic for which debounce method called is below. It checks various defines that you have set in ```rules.mk```
-
-```
-DEBOUNCE_DIR:= $(QUANTUM_DIR)/debounce
-DEBOUNCE_TYPE?= sym_defer_g
-ifneq ($(strip $(DEBOUNCE_TYPE)), custom)
- QUANTUM_SRC += $(DEBOUNCE_DIR)/$(strip $(DEBOUNCE_TYPE)).c
-endif
-```
### Debounce selection
@@ -140,11 +131,3 @@ You have the option to implement you own debouncing algorithm. To do this:
* Debouncing occurs after every raw matrix scan.
* Use num_rows rather than MATRIX_ROWS, so that split keyboards are supported correctly.
* If the algorithm might be applicable to other keyboards, please consider adding it to ```quantum/debounce```
-
-### Old names
-The following old names for existing algorithms will continue to be supported, however it is recommended to use the new names instead.
-
-* sym_g - old name for sym_defer_g
-* eager_pk - old name for sym_eager_pk
-* sym_pk - old name for sym_defer_pk
-* eager_pr - old name for sym_eager_pr