qmk-dactyl-manuform-a/tmk_core/common/avr
Simon Arlott b829a1d264
Avoid 8-bit timer overflows in debounce algorithms (#12240)
* Add fast_timer_t that is 16-bit or 32-bit based on architecture

A 16-bit timer will overflow sooner but be faster to compare on AVR.

* Avoid 8-bit timer overflows in debounce algorithms

Count down remaining elapsed time instead of trying to do 8-bit timer
comparisons.

Add a "none" implementation that is automatically used if DEBOUNCE is
0 otherwise it will break the _pk/_pr count down.

* Avoid unnecessary polling of the entire matrix in sym_eager_pk

The matrix only needs to be updated when a debounce timer expires.

* Avoid unnecessary polling of the entire matrix in sym_eager_pr

The matrix only needs to be updated when a debounce timer expires.

The use of the "needed_update" variable is trying to do what
"matrix_need_update" was added to fix but didn't work because it only
applied when all keys finished debouncing.

* Fix sym_defer_g timing inconsistency compared to other debounce algorithms

DEBOUNCE=5 should process the key after 5ms, not 6ms

* Add debounce tests
2021-06-09 17:23:21 +10:00
..
_print.h Fix USER_PRINT on avr/atsam (#12269) 2021-03-25 22:33:53 +11:00
_timer.h Avoid 8-bit timer overflows in debounce algorithms (#12240) 2021-06-09 17:23:21 +10:00
_wait.h Move gpio wait logic to wait.h (#12067) 2021-03-10 22:47:36 +00:00
atomic_util.h Split gpio and atomic to platform (#11792) 2021-02-14 11:51:06 +11:00
bootloader.c Format code according to conventions (#11905) 2021-02-15 06:55:43 +11:00
bootloader_size.c Have clang ignore the code in bootloader_size.c 2019-08-30 15:01:52 -07:00
gpio.h Add readPort() and some API to 'tmk_core/common/*/gpio.h' (#12754) 2021-06-07 18:23:21 +09:00
pin_defs.h Merge branch 'master' into develop 2021-02-14 19:59:26 -05:00
printf.c Refactor platform logic within print.h (#11863) 2021-02-14 01:44:22 +00:00
printf.mk Refactor platform logic within print.h (#11863) 2021-02-14 01:44:22 +00:00
sleep_led.c V-USB suspend refactor (#11891) 2021-02-25 15:54:25 +11:00
suspend.c Add missing LED Matrix suspend code to suspend.c (#12878) 2021-05-13 11:24:44 +10:00
timer.c Initial support for ATtiny85 (#8632) 2020-04-02 22:23:57 +01:00
timer_avr.h Change include guards in tmk_core/ and drivers/ to pragma once (#11240) 2020-12-26 15:56:11 +11:00
xprintf.S Ensure single newline at EOF for core files (#11310) 2020-12-28 04:36:32 +11:00
xprintf.h Change include guards in tmk_core/ and drivers/ to pragma once (#11240) 2020-12-26 15:56:11 +11:00