config.h 685 B

123456789101112131415161718192021222324252627282930
  1. #ifndef USERSPACE_CONFIG_H
  2. #define USERSPACE_CONFIG_H
  3. //TAPPING_TERM
  4. #ifdef TAP_DANCE_ENABLE
  5. #define TAPPING_TERM 200
  6. #endif
  7. //Mousekey Settings
  8. #ifdef MOUSEKEY_ENABLE
  9. #define MOUSEKEY_INTERVAL 16
  10. #define MOUSEKEY_DELAY 0
  11. #define MOUSEKEY_TIME_TO_MAX 60
  12. #define MOUSEKEY_MAX_SPEED 7
  13. #define MOUSEKEY_WHEEL_DELAY 0
  14. #endif
  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 NO_ACTION_ONESHOT
  26. #endif // !USERSPACE_CONFIG_H