Enable eager debouncing for 1upkeyboards/pi60_rgb_v2

Add sym_eager_pk debouncing to improve gaming responsiveness.
The RP2040 has sufficient processing power to handle eager
debouncing, which provides immediate key press registration
while only debouncing the release. This significantly reduces
input latency for gaming applications.

Benefits:
- Faster key press registration (no debounce delay on press)
- Maintains reliability with debounce on release
- Ideal for gaming keyboards with powerful MCUs like RP2040

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Joan Delilah Pepin 2025-11-09 10:44:30 -08:00
parent 63fd8a414c
commit 07f468ff91

View file

@ -1,4 +1,10 @@
VIA_ENABLE = yes
VIAL_ENABLE = yes
LTO_ENABLE = yes
VIALRGB_ENABLE = yes
VIALRGB_ENABLE = yes
# Use eager debouncing for faster response time
# The RP2040 has plenty of processing power to handle eager debouncing,
# which provides better responsiveness for gaming by immediately registering
# key presses while only debouncing the key release.
DEBOUNCE_TYPE = sym_eager_pk