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.

72 lines
1.7 KiB

  1. /*
  2. Copyright 2012 Jun Wako <wakojun@gmail.com>
  3. Copyright 2015 Jack Humbert
  4. Copyright 2020 James Smith <bronzegears@gmail.com> @klackygears
  5. This program is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, either version 2 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #pragma once
  17. #define SPLIT_USB_DETECT
  18. /* mouse config */
  19. #define MOUSEKEY_INTERVAL 20
  20. #define MOUSEKEY_DELAY 0
  21. #define MOUSEKEY_TIME_TO_MAX 60
  22. #define MOUSEKEY_MAX_SPEED 7
  23. #define MOUSEKEY_WHEEL_DELAY 0
  24. #define EE_HANDS
  25. //#define SPLIT_HAND_PIN B7
  26. /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
  27. #define LOCKING_SUPPORT_ENABLE
  28. /* Locking resynchronize hack */
  29. #define LOCKING_RESYNC_ENABLE
  30. /* Enables This makes it easier for fast typists to use dual-function keys */
  31. #define PERMISSIVE_HOLD
  32. /* ws2812 RGB LED */
  33. #define RGB_DI_PIN D3
  34. #define RGBLED_NUM 28 // Number of LEDs
  35. #define RGBLIGHT_LIMIT_VAL 120
  36. #define RGBLIGHT_SPLIT
  37. /*
  38. * Feature disable options
  39. * These options are also useful to firmware size reduction.
  40. */
  41. /* disable debug print */
  42. // #define NO_DEBUG
  43. /* disable print */
  44. // #define NO_PRINT
  45. /* disable action features */
  46. //#define NO_ACTION_LAYER
  47. //#define NO_ACTION_TAPPING
  48. //#define NO_ACTION_ONESHOT
  49. //#define TAPPING_TERM 150
  50. //#define QUICK_TAP_TERM 0