config.h 660 B

123456789101112131415161718192021222324252627282930
  1. #pragma once
  2. /*
  3. * MIDI options
  4. */
  5. /* enable basic MIDI features:
  6. - MIDI notes can be sent when in Music mode is on
  7. */
  8. #define MOUSEKEY_INTERVAL 16
  9. #define MOUSEKEY_DELAY 0
  10. #define MOUSEKEY_TIME_TO_MAX 60
  11. #define MOUSEKEY_MAX_SPEED 7
  12. #define MOUSEKEY_WHEEL_DELAY 0
  13. #define MIDI_BASIC
  14. #define BACKLIGHT_BREATHING
  15. /* enable advanced MIDI features:
  16. - MIDI notes can be added to the keymap
  17. - Octave shift and transpose
  18. - Virtual sustain, portamento, and modulation wheel
  19. - etc.
  20. */
  21. //#define MIDI_ADVANCED
  22. /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
  23. //#define MIDI_TONE_KEYCODE_OCTAVES 2