You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.5 KiB

  1. #pragma once
  2. //TAPPING_TERM
  3. //tapping term short (<100): on multi-purpose keys, slow taps may not register, but "holds" register easier. multi-tap keys may be difficult to activate.
  4. //tapping term long (>200): holds don't register as easily - noticeable when typing quickly (e.g. shift doesn't want to engage.)
  5. //MIGHT HAVE TO SPLIT THIS INTO TWO CONDITIONS
  6. #if defined(TAP_DANCE_ENABLE) && defined(KEYBOARD_lets_split_rev2) || defined(KEYBOARD_keebio_iris_rev2)
  7. //Kailh Coppers activate quickly and don't need a long tapping term
  8. #define TAPPING_TERM 180
  9. #elif defined(TAP_DANCE_ENABLE) && defined(KEYBOARD_bigswitch)
  10. #define TAPPING_TERM 700
  11. #else
  12. #define TAPPING_TERM 145
  13. #endif
  14. //Mousekey Settings
  15. #ifdef MOUSEKEY_ENABLE
  16. #define MOUSEKEY_INTERVAL 16
  17. #define MOUSEKEY_DELAY 0
  18. #define MOUSEKEY_TIME_TO_MAX 60
  19. #define MOUSEKEY_MAX_SPEED 7
  20. #define MOUSEKEY_WHEEL_DELAY 0
  21. #endif
  22. // Disable action_get_macro and fn_actions, since we don't use these
  23. // and it saves on space in the firmware.
  24. #ifndef NO_DEBUG
  25. #define NO_DEBUG
  26. #endif // !NO_DEBUG
  27. #if !defined(NO_PRINT) && !defined(CONSOLE_ENABLE)
  28. #define NO_PRINT
  29. #endif // !NO_PRINT
  30. #define NO_ACTION_MACRO
  31. #define NO_ACTION_FUNCTION
  32. #define NO_ACTION_ONESHOT
  33. #define PERMISSIVE_HOLD
  34. //// Disable mod tap interrrupt
  35. //#ifndef IGNORE_MOD_TAP_INTERRUPT
  36. //#define IGNORE_MOD_TAP_INTERRUPT
  37. //#endif // !mod tap interrrupt
  38. //set max breathing brightness on kbd6x
  39. #if defined(KEYBOARD_kbdfans_kbd6x)
  40. #define RGBLIGHT_EFFECT_BREATHE_MAX 128 // 0-255
  41. #endif