From: Gergely Nagy Date: Sat, 19 Nov 2016 17:19:18 +0000 (+0100) Subject: Fix the Space Cadet timeout code X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=74a1f00713d1407fb1d2e20d58da93919ab0c221;p=qmk_firmware.git Fix the Space Cadet timeout code Define a default TAPPING_TERM in quantum.c, for keyboards that do not have it set. Fixes the CI failure. Signed-off-by: Gergely Nagy --- diff --git a/quantum/quantum.c b/quantum/quantum.c index 2addcb670..b5e2d60b9 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c @@ -1,5 +1,9 @@ #include "quantum.h" +#ifndef TAPPING_TERM +#define TAPPING_TERM 200 +#endif + static void do_code16 (uint16_t code, void (*f) (uint8_t)) { switch (code) { case QK_MODS ... QK_MODS_MAX: