You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qmk_firmware/keyboards/ergodox/ez
Andrew Pritchard cd30a60d0e Change to per-key eager debouncing for ErgoDox EZ.
Empirically, waiting for N consecutive identical scans as a debouncing
strategy doesn't work very well for the ErgoDox EZ where scans are very
slow compared to most keyboards.  Instead, debounce the signals by
eagerly reporting a change as soon as one scan observes it, but then
ignoring further changes from that key for the next N scans.

This is implemented by keeping an extra matrix of uint8 countdowns, such
that only keys whose countdown is currently zero are eligible to change.
When we do observe a change, we bump that key's countdown to DEBOUNCE.
During each scan, every nonzero countdown is decremented.

With this approach to debouncing, much higher debounce constants are
tolerable, because latency does not increase with the constant, and
debounce countdowns on one key do not interfere with events on other
keys.  The only negative effect of increasing the constant is that the
minimum duration of a keypress increases.  Perhaps I'm just extremely
unlucky w.r.t. key switch quality, but I saw occasional bounces even
with DEBOUNCE=10; with 15, I've seen none so far.  That's around 47ms,
which seems like an absolutely insane amount of time for a key to be
bouncy, but at least it works.
8 years ago
..
keymaps Changing keymap name to "profet_80" 8 years ago
util Initial structure for Ergodox as subprojects 8 years ago
190hotfix.sh Initial structure for Ergodox as subprojects 8 years ago
Makefile Flips off MIDI and API_SYSEX 8 years ago
config.h Change to per-key eager debouncing for ErgoDox EZ. 8 years ago
ez.c turn off rgb_midi in ez 8 years ago
ez.h Removing separate ergodox80 project. 8 years ago
i2cmaster.h Initial structure for Ergodox as subprojects 8 years ago
matrix.c Change to per-key eager debouncing for ErgoDox EZ. 8 years ago
rules.mk Remove unneeded makefile include 8 years ago
twimaster.c Initial structure for Ergodox as subprojects 8 years ago