aboutsummaryrefslogtreecommitdiffstats
path: root/quantum/debounce/eager_pr.c
Commit message (Collapse)AuthorAgeFilesLines
* clang-format changesskullY2019-08-301-41/+41
|
* Fix debouncing issue for eager algorithms (#6081)Drashna Jaelre2019-07-091-6/+11
| | | | | | * Fix debouncing issue for eager algos * Fix up typo issue
* [core] Fix for eager_pr #5643Alex Ong2019-04-181-1/+2
| | | | Added extra transfer_matrix_values() call whenever counters don't need updating
* Eager pk/pr optimization (#5621)Alex Ong2019-04-151-40/+34
| | | | | | * Optimizations to eager_pk * eager_pr also uses changed boolean now.
* Eager Per Row Debouncing added (added to Ergodox) (#5498)Alex Ong2019-04-031-0/+100
* 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.