config.h 718 B

1234567891011121314151617181920212223242526272829303132
  1. #ifndef USERSPACE_CONFIG_H
  2. #define USERSPACE_CONFIG_H
  3. #define PREVENT_STUCK_MODIFIERS
  4. //TAPPING_TERM
  5. #ifdef TAP_DANCE_ENABLE
  6. #define TAPPING_TERM 200
  7. #endif
  8. //Mousekey Settings
  9. #ifdef MOUSEKEY_ENABLE
  10. #define MOUSEKEY_INTERVAL 16
  11. #define MOUSEKEY_DELAY 0
  12. #define MOUSEKEY_TIME_TO_MAX 60
  13. #define MOUSEKEY_MAX_SPEED 7
  14. #define MOUSEKEY_WHEEL_DELAY 0
  15. #endif
  16. // Disable action_get_macro and fn_actions, since we don't use these
  17. // and it saves on space in the firmware.
  18. #ifndef NO_DEBUG
  19. #define NO_DEBUG
  20. #endif // !NO_DEBUG
  21. #if !defined(NO_PRINT) && !defined(CONSOLE_ENABLE)
  22. #define NO_PRINT
  23. #endif // !NO_PRINT
  24. #define NO_ACTION_MACRO
  25. #define NO_ACTION_FUNCTION
  26. #define NO_ACTION_ONESHOT
  27. #endif // !USERSPACE_CONFIG_H