config.h 832 B

1234567891011121314151617181920212223242526272829303132
  1. #pragma once
  2. #ifndef QMK_KEYS_PER_SCAN
  3. #define QMK_KEYS_PER_SCAN 4
  4. #endif // QMK KEYS PER SCAN
  5. // this makes it possible to do rolling combos (zx) with keys that
  6. // convert to other keys on hold (z becomes ctrl when you hold it,
  7. // and when this option isn't enabled, z rapidly followed by x
  8. // actually sends Ctrl-x. That's bad.)
  9. #define IGNORE_MOD_TAP_INTERRUPT
  10. #undef PERMISSIVE_HOLD
  11. #ifdef TAPPING_TERM
  12. #undef TAPPING_TERM
  13. #endif // TAPPING_TERM
  14. #define TAPPING_TERM 175
  15. // Disable action_get_macro and fn_actions, since we don't use these
  16. // and it saves on space in the firmware.
  17. #ifndef NO_DEBUG
  18. #define NO_DEBUG
  19. #endif // !NO_DEBUG
  20. #if !defined(NO_PRINT) && !defined(CONSOLE_ENABLE)
  21. #define NO_PRINT
  22. #endif // !NO_PRINT
  23. #define NO_ACTION_MACRO
  24. #define NO_ACTION_FUNCTION
  25. #define DISABLE_LEADER
  26. #define MACRO_TIMER 5