|
|
7 years ago | |
|---|---|---|
| .. | ||
| debounce_eager_pk.c | 3cf7f7322c Removed "debounce_algo = manual" in all keyboards with CUSTOM_MATRIX = yes. | 7 years ago |
| debounce_sym_g.c | 3cf7f7322c Removed "debounce_algo = manual" in all keyboards with CUSTOM_MATRIX = yes. | 7 years ago |
| readme.md | 3cf7f7322c Removed "debounce_algo = manual" in all keyboards with CUSTOM_MATRIX = yes. | 7 years ago |
Debounce algorithms belong in this folder. Here are a few ideas
1) Global vs Per-Key vs Per-Row
2) Eager vs symmetric vs assymetric
3) Timestamp vs cycles
The default algorithm is symmetric and global. Here are a few that could be implemented:
debounce_sym_g.c debounce_sym_pk.c debounce_sym_pr.c debounce_sym_pr_cycles.c //currently used in ergo-dox debounce_eager_g.c debounce_eager_pk.c debounce_eager_pr.c //could be used in ergo-dox!