]> git.donarmstrong.com Git - qmk_firmware.git/blob - users/wanleg/config.h
Big Switch and 5x5 edits (#4168)
[qmk_firmware.git] / users / wanleg / config.h
1 #ifndef USERSPACE_CONFIG_H
2 #define USERSPACE_CONFIG_H
3
4 //TAPPING_TERM
5 //tapping term short (<100): on multi-purpose keys, slow taps may not register, but "holds" register easier. multi-tap keys may be difficult to activate.
6 //tapping term long (>200): holds don't register as easily - noticeable when typing quickly (e.g. shift doesn't want to engage.)
7 #if defined(TAP_DANCE_ENABLE) && defined(KEYBOARD_lets_split_rev2)
8 //Kailh Coppers activate quickly and don't need a long tapping term
9 #define TAPPING_TERM 100
10
11 #elif defined(TAP_DANCE_ENABLE) && defined(KEYBOARD_bigswitch)
12 #define TAPPING_TERM 700
13
14 #else
15 #define TAPPING_TERM 145
16 #endif
17
18 //Mousekey Settings
19 #ifdef MOUSEKEY_ENABLE
20 #define MOUSEKEY_INTERVAL 16
21 #define MOUSEKEY_DELAY 0
22 #define MOUSEKEY_TIME_TO_MAX 60
23 #define MOUSEKEY_MAX_SPEED 7
24 #define MOUSEKEY_WHEEL_DELAY 0
25 #endif
26
27 // Disable action_get_macro and fn_actions, since we don't use these
28 // and it saves on space in the firmware.
29 #ifndef NO_DEBUG
30 #define NO_DEBUG
31 #endif // !NO_DEBUG
32 #if !defined(NO_PRINT) && !defined(CONSOLE_ENABLE)
33 #define NO_PRINT
34 #endif // !NO_PRINT
35 #define NO_ACTION_MACRO
36 #define NO_ACTION_FUNCTION
37 #define NO_ACTION_ONESHOT
38
39 // Disable mod tap interrrupt
40 #ifndef IGNORE_MOD_TAP_INTERRUPT
41 #define IGNORE_MOD_TAP_INTERRUPT
42 #endif // !mod tap interrrupt
43
44 #endif // !USERSPACE_CONFIG_H