config.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #pragma once
  2. /*
  3. * MIDI options
  4. */
  5. /* Prevent use of disabled MIDI features in the keymap */
  6. //#define MIDI_ENABLE_STRICT 1
  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. #undef TAPPING_TERM
  21. #define TAPPING_TERM 100
  22. #define COMBO_TERM 20
  23. #define COMBO_COUNT 1
  24. #define IGNORE_MOD_TAP_INTERRUPT
  25. #define PERMISSIVE_HOLD
  26. #define SUPER_DUPER_SOUND S__NOTE(_B1)
  27. #define MOUSEKEY_DELAY 100
  28. #define USB_POLLING_INTERVAL_MS 1
  29. #ifdef AUDIO_ENABLE
  30. #define STARTUP_SONG SONG(PLANCK_SOUND)
  31. #define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND), \
  32. SONG(COLEMAK_SOUND), \
  33. SONG(DVORAK_SOUND) \
  34. }
  35. #endif