config.h 589 B

1234567891011121314151617181920212223242526272829
  1. #ifndef CONFIG_USER_H
  2. #define CONFIG_USER_H
  3. #include "../../config.h"
  4. #define MUSIC_MASK (keycode != KC_NO)
  5. /*
  6. * MIDI options
  7. */
  8. /* enable basic MIDI features:
  9. - MIDI notes can be sent when in Music mode is on
  10. */
  11. #define MIDI_BASIC
  12. /* enable advanced MIDI features:
  13. - MIDI notes can be added to the keymap
  14. - Octave shift and transpose
  15. - Virtual sustain, portamento, and modulation wheel
  16. - etc.
  17. */
  18. //#define MIDI_ADVANCED
  19. /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
  20. //#define MIDI_TONE_KEYCODE_OCTAVES 2
  21. #endif