]> git.donarmstrong.com Git - qmk_firmware.git/blob - users/wanleg/config.h
Remove more commented out MCUs
[qmk_firmware.git] / users / wanleg / config.h
1 #pragma once
2
3 //TAPPING_TERM
4 //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.
5 //tapping term long (>200): holds don't register as easily - noticeable when typing quickly (e.g. shift doesn't want to engage.)
6
7
8 //MIGHT HAVE TO SPLIT THIS INTO TWO CONDITIONS
9 #if defined(TAP_DANCE_ENABLE) && defined(KEYBOARD_lets_split_rev2) || defined(KEYBOARD_keebio_iris_rev2)
10 //Kailh Coppers activate quickly and don't need a long tapping term
11 #define TAPPING_TERM 180
12
13 #elif defined(TAP_DANCE_ENABLE) && defined(KEYBOARD_bigswitch)
14 #define TAPPING_TERM 700
15
16 #else
17 #define TAPPING_TERM 145
18 #endif
19
20 //Mousekey Settings
21 #ifdef MOUSEKEY_ENABLE
22 #define MOUSEKEY_INTERVAL 16
23 #define MOUSEKEY_DELAY 0
24 #define MOUSEKEY_TIME_TO_MAX 60
25 #define MOUSEKEY_MAX_SPEED 7
26 #define MOUSEKEY_WHEEL_DELAY 0
27 #endif
28
29 // Disable action_get_macro and fn_actions, since we don't use these
30 // and it saves on space in the firmware.
31 #ifndef NO_DEBUG
32 #define NO_DEBUG
33 #endif // !NO_DEBUG
34 #if !defined(NO_PRINT) && !defined(CONSOLE_ENABLE)
35 #define NO_PRINT
36 #endif // !NO_PRINT
37 #define NO_ACTION_MACRO
38 #define NO_ACTION_FUNCTION
39 #define NO_ACTION_ONESHOT
40
41
42 #define PERMISSIVE_HOLD
43 //// Disable mod tap interrrupt
44 //#ifndef IGNORE_MOD_TAP_INTERRUPT
45 //#define IGNORE_MOD_TAP_INTERRUPT
46 //#endif // !mod tap interrrupt
47
48 //set max breathing brightness on kbd6x
49 #if defined(KEYBOARD_kbdfans_kbd6x)
50 #define RGBLIGHT_EFFECT_BREATHE_MAX 128  // 0-255
51 #endif