]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/planck/keymaps/dcompact/config.h
Merge branch 'master' of github.com:qmk/qmk_firmware into hf/shinydox
[qmk_firmware.git] / keyboards / planck / keymaps / dcompact / config.h
1 #ifndef CONFIG_USER_H
2 #define CONFIG_USER_H
3
4 #include "../../config.h"
5
6 #ifdef AUDIO_ENABLE
7     #define STARTUP_SONG SONG(PLANCK_SOUND)
8
9     #define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND), \
10                                   SONG(COLEMAK_SOUND), \
11                                   SONG(DVORAK_SOUND) \
12                                 }
13 #endif
14
15 #define MUSIC_MASK (keycode != KC_NO)
16
17 /*
18  * MIDI options
19  */
20
21 /* Prevent use of disabled MIDI features in the keymap */
22 //#define MIDI_ENABLE_STRICT 1
23
24 /* enable basic MIDI features:
25    - MIDI notes can be sent when in Music mode is on
26 */
27                                 
28 #define MIDI_BASIC
29
30 /* enable advanced MIDI features:
31    - MIDI notes can be added to the keymap
32    - Octave shift and transpose
33    - Virtual sustain, portamento, and modulation wheel
34    - etc.
35 */
36 //#define MIDI_ADVANCED
37
38 /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
39 //#define MIDI_TONE_KEYCODE_OCTAVES 2
40
41 #endif