From e0e5070f9698cee66588112eb7de18e14a851f49 Mon Sep 17 00:00:00 2001 From: Sergey Omelchenko Date: Mon, 15 Mar 2021 15:57:57 +0300 Subject: [PATCH 1/3] polling interval reduced for lower latency --- keyboards/geekboards/macropad_v2/config.h | 1 + 1 file changed, 1 insertion(+) diff --git a/keyboards/geekboards/macropad_v2/config.h b/keyboards/geekboards/macropad_v2/config.h index 5f11cdddb012..0da89896d531 100644 --- a/keyboards/geekboards/macropad_v2/config.h +++ b/keyboards/geekboards/macropad_v2/config.h @@ -69,6 +69,7 @@ #define RGB_DISABLE_WHEN_USB_SUSPENDED true #define WAIT_FOR_USB +#define USB_POLLING_INTERVAL_MS 1 /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ #define DEBOUNCE 3 From e743c5360eca5d8560b4bc8569769f81676a559c Mon Sep 17 00:00:00 2001 From: Sergey Omelchenko Date: Thu, 17 Jun 2021 11:30:47 +0300 Subject: [PATCH 2/3] Added TAP_CODE_DELAY Necessary for LT(), tap-dance keycodes to work properly --- keyboards/geekboards/macropad_v2/config.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/keyboards/geekboards/macropad_v2/config.h b/keyboards/geekboards/macropad_v2/config.h index 0da89896d531..42169b9a795f 100644 --- a/keyboards/geekboards/macropad_v2/config.h +++ b/keyboards/geekboards/macropad_v2/config.h @@ -77,3 +77,5 @@ /* Bootmagic Lite key configuration */ #define BOOTMAGIC_LITE_ROW 0 #define BOOTMAGIC_LITE_COLUMN 0 + +#define TAP_CODE_DELAY 10 \ No newline at end of file From 96e213f44902ec43b295bd65b042e15b5e9ee0fb Mon Sep 17 00:00:00 2001 From: Sergey Omelchenko Date: Thu, 17 Jun 2021 11:36:04 +0300 Subject: [PATCH 3/3] Added missing newline --- keyboards/geekboards/macropad_v2/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keyboards/geekboards/macropad_v2/config.h b/keyboards/geekboards/macropad_v2/config.h index 42169b9a795f..57675d639c82 100644 --- a/keyboards/geekboards/macropad_v2/config.h +++ b/keyboards/geekboards/macropad_v2/config.h @@ -78,4 +78,4 @@ #define BOOTMAGIC_LITE_ROW 0 #define BOOTMAGIC_LITE_COLUMN 0 -#define TAP_CODE_DELAY 10 \ No newline at end of file +#define TAP_CODE_DELAY 10