config.h 832 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #ifndef CONFIG_USER_H
  2. #define CONFIG_USER_H
  3. #include "../../config.h"
  4. /*
  5. * MIDI options
  6. */
  7. /* Prevent use of disabled MIDI features in the keymap */
  8. #define MIDI_ENABLE_STRICT 1
  9. /* enable basic MIDI features:
  10. - MIDI notes can be sent when in Music mode is on
  11. #define MIDI_BASIC
  12. */
  13. /* enable advanced MIDI features:
  14. - MIDI notes can be added to the keymap
  15. - Octave shift and transpose
  16. - Virtual sustain, portamento, and modulation wheel
  17. - etc.
  18. */
  19. #define MIDI_ADVANCED
  20. /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
  21. #define MIDI_TONE_KEYCODE_OCTAVES 2
  22. /*
  23. Setting the modified Space Cadet Parens for German layout
  24. Default is
  25. #define LSPO_KEY KC_9
  26. #define RSPC_KEY KC_0
  27. */
  28. #define LSPO_KEY KC_8
  29. #define RSPC_KEY KC_9
  30. #define PERMISSIVE_HOLD
  31. #endif