config.h 1010 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #pragma once
  2. /*
  3. * MIDI options
  4. */
  5. /* enable basic MIDI features:
  6. - MIDI notes can be sent when in Music mode is on
  7. */
  8. #define MIDI_BASIC
  9. /* enable advanced MIDI features:
  10. - MIDI notes can be added to the keymap
  11. - Octave shift and transpose
  12. - Virtual sustain, portamento, and modulation wheel
  13. - etc.
  14. */
  15. //#define MIDI_ADVANCED
  16. /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
  17. //#define MIDI_TONE_KEYCODE_OCTAVES 2
  18. #undef TAPPING_TERM
  19. #define TAPPING_TERM 100
  20. #define COMBO_TERM 20
  21. #define COMBO_COUNT 1
  22. #define IGNORE_MOD_TAP_INTERRUPT
  23. #define PERMISSIVE_HOLD
  24. #define SUPER_DUPER_SOUND S__NOTE(_B1)
  25. #define MOUSEKEY_DELAY 100
  26. #define USB_POLLING_INTERVAL_MS 1
  27. #ifdef AUDIO_ENABLE
  28. #define STARTUP_SONG SONG(PLANCK_SOUND)
  29. #define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND), \
  30. SONG(COLEMAK_SOUND), \
  31. SONG(DVORAK_SOUND) \
  32. }
  33. #endif