]> git.donarmstrong.com Git - qmk_firmware.git/blob - users/ishtob/config.h
Fixes STM32F303XC timer issue for Planck Rev 6 (#3777)
[qmk_firmware.git] / users / ishtob / config.h
1 #ifndef CONFIG_USER_H
2 #define CONFIG_USER_H
3
4 #include "config_common.h"
5
6 #ifdef AUDIO_ENABLE
7     #define STARTUP_SONG SONG(PLANCK_SOUND)
8     // #define STARTUP_SONG SONG(NO_SOUND)
9
10     #define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND), \
11                                   SONG(COLEMAK_SOUND), \
12                                   SONG(DVORAK_SOUND) \
13                                 }
14 #endif
15
16 //#define LEADER_TIMEOUT 300
17 //#define BACKLIGHT_BREATHING
18 #define PREVENT_STUCK_MODIFIERS
19 //#define PERMISSIVE_HOLD
20 // #define QMK_KEYS_PER_SCAN 4
21
22 //audio clicky
23   //#define AUDIO_CLICKY
24   // to enable clicky on startup
25   //#define AUDIO_CLICKY_ON
26   //#define AUDIO_CLICKY_FREQ_RANDOMNESS 1.0f
27
28 /* ws2812 RGB LED
29 #define RGB_DI_PIN B5
30 #define RGBLIGHT_ANIMATIONS
31 #define RGBLED_NUM 8     // Number of LEDs
32 #define RGBLIGHT_HUE_STEP 10
33 #define RGBLIGHT_SAT_STEP 17
34 */
35 #undef PLANCK_MIT_LAYOUT
36
37 //#define MUON_LEFT
38
39 #undef DEBOUNCE
40 #define DEBOUNCE 0
41
42 //rgb-reactive
43 //#define RGB_MATRIX_KEYPRESSES
44 //#define EECONFIG_RGB_MATRIX (uint32_t *)16
45
46 //skip usb startup check
47 //#define NO_USB_STARTUP_CHECK
48
49
50 /*
51  * MIDI options
52  */
53
54 /* Prevent use of disabled MIDI features in the keymap */
55 //#define MIDI_ENABLE_STRICT 1
56
57 /* enable basic MIDI features:
58    - MIDI notes can be sent when in Music mode is on
59 */
60 #define MIDI_BASIC
61
62 /* enable advanced MIDI features:
63    - MIDI notes can be added to the keymap
64    - Octave shift and transpose
65    - Virtual sustain, portamento, and modulation wheel
66    - etc.
67 */
68 //#define MIDI_ADVANCED
69
70 /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
71 //#define MIDI_TONE_KEYCODE_OCTAVES 2
72
73 // Most tactile encoders have detents every 4 stages
74 #define ENCODER_RESOLUTION 4
75                                 
76 #endif