Skip to content

Commit

Permalink
Update asymmetric debounce code comment (qmk#22981)
Browse files Browse the repository at this point in the history
  • Loading branch information
filterpaper authored Jan 31, 2024
1 parent 18f8e51 commit 0a6a203
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions quantum/debounce/asym_eager_defer_pk.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 0a6a203

Please sign in to comment.