Merge remote-tracking branch 'origin/master' into develop
This commit is contained in:
commit
7fdb95af36
2 changed files with 12 additions and 4 deletions
|
@ -32,8 +32,12 @@
|
||||||
#define LED_COMPOSE_PIN C3
|
#define LED_COMPOSE_PIN C3
|
||||||
#define LED_PIN_ON_STATE 0
|
#define LED_PIN_ON_STATE 0
|
||||||
|
|
||||||
/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
|
/* Well-worn Cherry MX key switches can bounce for up to 20ms, despite the
|
||||||
#define DEBOUNCE 5
|
* Cherry data sheet specifying 5ms. Because we use the sym_eager_pk debounce
|
||||||
|
* algorithm, this debounce latency only affects key releases (not key
|
||||||
|
* presses). */
|
||||||
|
#undef DEBOUNCE
|
||||||
|
#define DEBOUNCE 20
|
||||||
|
|
||||||
#define IGNORE_MOD_TAP_INTERRUPT
|
#define IGNORE_MOD_TAP_INTERRUPT
|
||||||
|
|
||||||
|
|
|
@ -50,8 +50,12 @@
|
||||||
/* COL2ROW or ROW2COL */
|
/* COL2ROW or ROW2COL */
|
||||||
#define DIODE_DIRECTION COL2ROW
|
#define DIODE_DIRECTION COL2ROW
|
||||||
|
|
||||||
/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
|
/* Well-worn Cherry MX key switches can bounce for up to 20ms, despite the
|
||||||
#define DEBOUNCE 5
|
* Cherry data sheet specifying 5ms. Because we use the sym_eager_pk debounce
|
||||||
|
* algorithm, this debounce latency only affects key releases (not key
|
||||||
|
* presses). */
|
||||||
|
#undef DEBOUNCE
|
||||||
|
#define DEBOUNCE 20
|
||||||
|
|
||||||
#define IGNORE_MOD_TAP_INTERRUPT
|
#define IGNORE_MOD_TAP_INTERRUPT
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue