diff options
author | QMK Bot <hello@qmk.fm> | 2024-01-31 03:34:49 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2024-01-31 03:34:49 +0000 |
commit | f2684dcfc1567510cf198346d0b8433c308f145d (patch) | |
tree | bc7800c2f199626704cfd7150fedf7d10a0f3f95 /quantum | |
parent | b910b1261d1adf6de2f2db99061c57ef218fc042 (diff) | |
parent | 0a6a203fb58f316b09b7e661fae0b7188685db08 (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/debounce/asym_eager_defer_pk.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/quantum/debounce/asym_eager_defer_pk.c b/quantum/debounce/asym_eager_defer_pk.c index 954d43536c..b6fcdc3d4e 100644 --- a/quantum/debounce/asym_eager_defer_pk.c +++ b/quantum/debounce/asym_eager_defer_pk.c @@ -18,8 +18,9 @@ */ /* -Basic symmetric per-key algorithm. Uses an 8-bit counter per key. -When no state changes have occured for DEBOUNCE milliseconds, we push the state. +Asymetric per-key algorithm. After pressing a key, it immediately changes state, +with no further inputs accepted until DEBOUNCE milliseconds have occurred. After +releasing a key, that state is pushed after no changes occur for DEBOUNCE milliseconds. */ #include "debounce.h" |