]> git.donarmstrong.com Git - qmk_firmware.git/blob - users/drashna/config.h
Remove more commented out MCUs
[qmk_firmware.git] / users / drashna / config.h
1 #pragma once
2
3
4 #ifdef AUDIO_ENABLE
5 #   define AUDIO_CLICKY
6 #   define STARTUP_SONG SONG(RICK_ROLL)
7 #   define GOODBYE_SONG  SONG(SONIC_RING)
8 #   define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND), \
9                                     SONG(COLEMAK_SOUND), \
10                                     SONG(DVORAK_SOUND), \
11                                     SONG(OVERWATCH_THEME) \
12                                 }
13
14 #   define AUDIO_CLICKY_FREQ_RANDOMNESS 1.5f
15
16 #   define UNICODE_SONG_OSX SONG(RICK_ROLL)
17 #   define UNICODE_SONG_LNX SONG(RICK_ROLL)
18 #   define UNICODE_SONG_WIN SONG(RICK_ROLL)
19 #   define UNICODE_SONG_BSD SONG(RICK_ROLL)
20 #   define UNICODE_SONG_WINC SONG(RICK_ROLL)
21
22 #endif // !AUDIO_ENABLE
23
24 #ifdef RGBLIGHT_ENABLE
25 #   define RGBLIGHT_SLEEP
26 #   undef RGBLIGHT_ANIMATIONS
27 #   define RGBLIGHT_EFFECT_BREATHING
28 #   define RGBLIGHT_EFFECT_SNAKE
29 #   define RGBLIGHT_EFFECT_KNIGHT
30 #endif // RGBLIGHT_ENABLE
31
32 #ifndef ONESHOT_TAP_TOGGLE
33 #   define ONESHOT_TAP_TOGGLE 2
34 #endif // !ONESHOT_TAP_TOGGLE
35
36 #ifndef ONESHOT_TIMEOUT
37 #   define ONESHOT_TIMEOUT 3000
38 #endif// !ONESHOT_TIMEOUT
39
40 #ifndef QMK_KEYS_PER_SCAN
41 #   define QMK_KEYS_PER_SCAN 4
42 #endif // !QMK_KEYS_PER_SCAN
43
44
45
46 // this makes it possible to do rolling combos (zx) with keys that
47 // convert to other keys on hold (z becomes ctrl when you hold it,
48 // and when this option isn't enabled, z rapidly followed by x
49 // actually sends Ctrl-x. That's bad.)
50 #define IGNORE_MOD_TAP_INTERRUPT
51 #undef PERMISSIVE_HOLD
52 //#define TAPPING_FORCE_HOLD
53 //#define RETRO_TAPPING
54
55 #define FORCE_NKRO
56
57 #ifndef TAPPING_TOGGLE
58 #   define TAPPING_TOGGLE  1
59 #endif
60
61 #ifdef TAPPING_TERM
62 #   undef TAPPING_TERM
63 #endif // TAPPING_TERM
64 #if defined(KEYBOARD_ergodox_ez)
65 #   define TAPPING_TERM 185
66 #elif defined(KEYBOARD_crkbd)
67 #   define TAPPING_TERM 200
68 #else
69 #   define TAPPING_TERM 175
70 #endif
71
72
73 #define TAP_CODE_DELAY 5
74
75 /* Disable unused and unneeded features to reduce on firmware size */
76 #ifdef LOCKING_SUPPORT_ENABLE
77 #   undef LOCKING_SUPPORT_ENABLE
78 #endif
79 #ifdef LOCKING_RESYNC_ENABLE
80 #   undef LOCKING_RESYNC_ENABLE
81 #endif