You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.1 KiB

  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. /* Prevent use of disabled MIDI features in the keymap */
  9. //#define MIDI_ENABLE_STRICT 1
  10. /* enable basic MIDI features:
  11. - MIDI notes can be sent when in Music mode is on
  12. */
  13. #define MIDI_BASIC
  14. /* enable advanced MIDI features:
  15. - MIDI notes can be added to the keymap
  16. - Octave shift and transpose
  17. - Virtual sustain, portamento, and modulation wheel
  18. - etc.
  19. */
  20. //#define MIDI_ADVANCED
  21. /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
  22. //#define MIDI_TONE_KEYCODE_OCTAVES 2
  23. // help for fast typist+dual function keys?
  24. #define PERMISSIVE_HOLD
  25. /* disable debug print */
  26. #define NO_DEBUG
  27. /* disable print */
  28. #define NO_PRINT
  29. /* speed up mousekeys a bit */
  30. #define MOUSEKEY_DELAY 50
  31. #define MOUSEKEY_INTERVAL 20
  32. #define MOUSEKEY_MAX_SPEED 8
  33. #define MOUSEKEY_TIME_TO_MAX 30
  34. #define MOUSEKEY_WHEEL_MAX_SPEED 8
  35. #define MOUSEKEY_WHEEL_TIME_TO_MAX 40
  36. #endif