mirror of
https://github.com/Keychron/qmk_firmware.git
synced 2024-11-22 16:37:58 +06:00
[Keyboard] kint2pp: reduce input latency by ≈10ms (#12625)
This commit is contained in:
parent
3d32cbb0dc
commit
c922fc2cf3
|
@ -36,3 +36,7 @@
|
|||
#define DEBOUNCE 5
|
||||
|
||||
#define IGNORE_MOD_TAP_INTERRUPT
|
||||
|
||||
// Reduce input latency by lowering the USB polling interval
|
||||
// from its 10ms default to the 1ms minimum that USB 1.x (Full Speed) allows:
|
||||
#define USB_POLLING_INTERVAL_MS 1
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
# Debounce eagerly (report change immediately), keep per-key timers. We can use
|
||||
# this because the kinT does not have to deal with noise.
|
||||
DEBOUNCE_TYPE = sym_eager_pk
|
Loading…
Reference in New Issue
Block a user