]> git.donarmstrong.com Git - qmk_firmware.git/blob - config.h
aa13d7b73588b6506ee0ed1d0c4b73ef4a9e58d7
[qmk_firmware.git] / config.h
1 #ifndef CONFIG_USER_H
2 #define CONFIG_USER_H
3
4 #include "../../config.h"
5
6 // #define MUSIC_MASK (keycode != KC_NO)
7
8 /*
9  * MIDI options
10  */
11
12 /* Prevent use of disabled MIDI features in the keymap */
13 //#define MIDI_ENABLE_STRICT 1
14
15 /* enable basic MIDI features:
16    - MIDI notes can be sent when in Music mode is on
17 */
18
19 // #define MIDI_BASIC
20
21 /* enable advanced MIDI features:
22    - MIDI notes can be added to the keymap
23    - Octave shift and transpose
24    - Virtual sustain, portamento, and modulation wheel
25    - etc.
26 */
27 //#define MIDI_ADVANCED
28
29 /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
30 //#define MIDI_TONE_KEYCODE_OCTAVES 2
31
32 // help for fast typist+dual function keys?
33 #define PERMISSIVE_HOLD
34
35 /* speed up mousekeys a bit */
36 #define MOUSEKEY_DELAY             50
37 #define MOUSEKEY_INTERVAL          20
38 #define MOUSEKEY_MAX_SPEED         8
39 #define MOUSEKEY_TIME_TO_MAX       30
40 #define MOUSEKEY_WHEEL_MAX_SPEED   8
41 #define MOUSEKEY_WHEEL_TIME_TO_MAX 40
42
43 #endif