config.h 581 B

12345678910111213141516171819202122232425262728
  1. #ifndef CONFIG_USER_H
  2. #define CONFIG_USER_H
  3. #include "../../config.h"
  4. #define SERIAL_UART_BAUD 19200
  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