config.h 725 B

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