aboutsummaryrefslogtreecommitdiffstats
path: root/quantum/debounce/readme.md
diff options
context:
space:
mode:
authorAlex Ong <the.onga@gmail.com>2019-04-04 08:45:55 +1100
committerDrashna Jaelre <drashna@live.com>2019-04-03 14:45:55 -0700
commit17e7762de7e3fdfc61c20aa61022f47370630c6a (patch)
treeacad10cdb64e24d78154c7c04de3585dece32cc3 /quantum/debounce/readme.md
parente1e08a494bf9ea46e1385559df76d5f49b8e9087 (diff)
downloadfirmware-17e7762de7e3fdfc61c20aa61022f47370630c6a.tar.gz
firmware-17e7762de7e3fdfc61c20aa61022f47370630c6a.tar.bz2
firmware-17e7762de7e3fdfc61c20aa61022f47370630c6a.zip
Eager Per Row Debouncing added (added to Ergodox) (#5498)
* Implemented Eager Per Row debouncing algorithm. Good for when fingers can only press one row at a time (e.g. when keyboard is wired so that "rows" are vertical) * Added documentation for eager_pr * Ported ergodox_ez to eager_pr debouncing. * Removed check for changes in matrix_scan. * Added further clarification in docs. * Accidental merge with ergodox_ez * Small cleanup in eager_pr * Forgot to debounce_init - this would probably cause seg-faults.
Diffstat (limited to 'quantum/debounce/readme.md')
-rw-r--r--quantum/debounce/readme.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/debounce/readme.md b/quantum/debounce/readme.md
index 5b318d845..f77f78c76 100644
--- a/quantum/debounce/readme.md
+++ b/quantum/debounce/readme.md
@@ -22,7 +22,7 @@ Here are a few that could be implemented:
sym_g.c
sym_pk.c
sym_pr.c
-sym_pr_cycles.c //currently used in ergo-dox
+sym_pr_cycles.c
eager_g.c
eager_pk.c
eager_pr.c //could be used in ergo-dox!