diff options
author | fauxpark <fauxpark@gmail.com> | 2020-12-18 02:15:28 +1100 |
---|---|---|
committer | fauxpark <fauxpark@gmail.com> | 2020-12-18 02:15:28 +1100 |
commit | 7797070b376ff18a5d540ccc2a95033fc548c611 (patch) | |
tree | e3092fed02c154ed104c5fa541a604c9ed8643cb /quantum/debounce | |
parent | 973057cfe4ac0ddc23b7ed1016245e6fc939c456 (diff) | |
parent | 6ea4b06f9fc19825605477cdc27f5bec0f3dc0a9 (diff) |
Merge remote-tracking branch 'upstream/master' into develop
Diffstat (limited to 'quantum/debounce')
-rw-r--r-- | quantum/debounce/sym_defer_pk.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/quantum/debounce/sym_defer_pk.c b/quantum/debounce/sym_defer_pk.c index f404cf9c44..6c0e3bb071 100644 --- a/quantum/debounce/sym_defer_pk.c +++ b/quantum/debounce/sym_defer_pk.c @@ -38,12 +38,12 @@ static bool counters_need_update; #define MAX_DEBOUNCE (DEBOUNCE_ELAPSED - 1) static uint8_t wrapping_timer_read(void) { - static uint16_t time = 0; + static uint16_t time = 0; static uint8_t last_result = 0; - uint16_t new_time = timer_read(); - uint16_t diff = new_time - time; - time = new_time; - last_result = (last_result + diff) % (MAX_DEBOUNCE + 1); + uint16_t new_time = timer_read(); + uint16_t diff = new_time - time; + time = new_time; + last_result = (last_result + diff) % (MAX_DEBOUNCE + 1); return last_result; } |