logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

config.h (896B)


  1. #pragma once
  2. /* key matrix size */
  3. #define MATRIX_ROWS 6
  4. #define MATRIX_COLS 14
  5. #define MOUSEKEY_INTERVAL 20
  6. #define MOUSEKEY_DELAY 0
  7. #define MOUSEKEY_TIME_TO_MAX 60
  8. #define MOUSEKEY_MAX_SPEED 7
  9. #define MOUSEKEY_WHEEL_DELAY 0
  10. /* key combination for command */
  11. #ifndef IS_COMMAND
  12. #define IS_COMMAND() ( \
  13. get_mods() == MOD_MASK_CTRL || \
  14. get_mods() == MOD_MASK_SHIFT \
  15. )
  16. #endif
  17. #define LED_BRIGHTNESS_LO 15
  18. #define LED_BRIGHTNESS_HI 255
  19. /* fix space cadet rollover issue */
  20. #define DISABLE_SPACE_CADET_ROLLOVER
  21. /*
  22. * Feature disable options
  23. * These options are also useful to firmware size reduction.
  24. */
  25. /* disable debug print */
  26. // #define NO_DEBUG
  27. /* disable print */
  28. // #define NO_PRINT
  29. /* disable action features */
  30. //#define NO_ACTION_LAYER
  31. //#define NO_ACTION_TAPPING
  32. //#define NO_ACTION_ONESHOT
  33. //#define DEBUG_MATRIX_SCAN_RATE