config.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
  21. //#define LOCKING_SUPPORT_ENABLE
  22. #undef LOCKING_SUPPORT_ENABLE
  23. /* Locking resynchronize hack */
  24. //#define LOCKING_RESYNC_ENABLE
  25. #undef LOCKING_RESYNC_ENABLE
  26. /*
  27. * Feature disable options
  28. * These options are also useful to firmware size reduction.
  29. */
  30. /* disable debug print */
  31. //#define NO_DEBUG
  32. /* disable print */
  33. //#define NO_PRINT
  34. #undef NO_PRINT
  35. /* disable action features */
  36. //#define NO_ACTION_LAYER
  37. #define NO_ACTION_TAPPING
  38. //#define NO_ACTION_ONESHOT
  39. #define NO_ACTION_MACRO
  40. #define NO_ACTION_FUNCTION
  41. //#define DYNAMIC_MACRO_ENABLE // Enable if you need to use the macro functionality
  42. //#define SPACE_CADET // Parenthesis on L/R shift
  43. #endif