tweak debounce
This commit is contained in:
parent
d015c366dc
commit
0cfebcf891
2 changed files with 6 additions and 0 deletions
|
@ -12,6 +12,9 @@
|
||||||
// from its 10ms default to the 1ms minimum that USB 1.x (Full Speed) allows:
|
// from its 10ms default to the 1ms minimum that USB 1.x (Full Speed) allows:
|
||||||
#define USB_POLLING_INTERVAL_MS 1
|
#define USB_POLLING_INTERVAL_MS 1
|
||||||
|
|
||||||
|
// try to be nice to the old switches I did harvest
|
||||||
|
#define DEBOUNCE 10
|
||||||
|
|
||||||
// home row mods
|
// home row mods
|
||||||
#define CHORDAL_HOLD
|
#define CHORDAL_HOLD
|
||||||
#define PERMISSIVE_HOLD
|
#define PERMISSIVE_HOLD
|
||||||
|
|
3
rules.mk
3
rules.mk
|
@ -1,6 +1,9 @@
|
||||||
# Enable N-Key Rollover
|
# Enable N-Key Rollover
|
||||||
NKRO_ENABLE = yes
|
NKRO_ENABLE = yes
|
||||||
|
|
||||||
|
# use more snappy debounce algo
|
||||||
|
DEBOUNCE_TYPE = asym_eager_defer_pk
|
||||||
|
|
||||||
# add bongocat & luna for OLEDs
|
# add bongocat & luna for OLEDs
|
||||||
ifeq ($(strip $(OLED_ENABLE)), yes)
|
ifeq ($(strip $(OLED_ENABLE)), yes)
|
||||||
SRC += features/oled_bongocat.c
|
SRC += features/oled_bongocat.c
|
||||||
|
|
Loading…
Add table
Reference in a new issue