config.h 700 B

123456789101112131415161718192021222324252627282930313233343536
  1. #ifndef USERSPACE_CONFIG_H
  2. #define USERSPACE_CONFIG_H
  3. #ifdef AUDIO_ENABLE
  4. // #define STARTUP_SONG SONG(E1M1_DOOM)
  5. // #define GOODBYE_SONG SONG(SONIC_RING)
  6. /* #define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND), \
  7. SONG(COLEMAK_SOUND), \
  8. SONG(DVORAK_SOUND), \
  9. }
  10. */
  11. //audio clicky
  12. #define AUDIO_CLICKY
  13. // to enable clicky on startup
  14. //#define AUDIO_CLICKY_ON
  15. #define AUDIO_CLICKY_FREQ_RANDOMNESS 1.0f
  16. #endif
  17. #define FORCE_NKRO
  18. #define LEADER_TIMEOUT 300
  19. #define PREVENT_STUCK_MODIFIERS
  20. #undef DEBOUNCE
  21. #define DEBOUNCE 0
  22. //skip usb startup check
  23. //#define NO_USB_STARTUP_CHECK
  24. #endif