config.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. Copyright 2012 Jun Wako <wakojun@gmail.com>
  3. Copyright 2015 Jack Humbert
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. #pragma once
  16. #include "config_common.h"
  17. /* USB Device descriptor parameter */
  18. #define VENDOR_ID 0xFEED
  19. #define PRODUCT_ID 0x3060
  20. #define DEVICE_VER 0x0001
  21. #define MANUFACTURER tshort
  22. // defined in subfolder
  23. #define DESCRIPTION A split keyboard for the cheap makers
  24. /* mouse config */
  25. #define MOUSEKEY_INTERVAL 20
  26. #define MOUSEKEY_DELAY 0
  27. #define MOUSEKEY_TIME_TO_MAX 60
  28. #define MOUSEKEY_MAX_SPEED 7
  29. #define MOUSEKEY_WHEEL_DELAY 0
  30. /* Set 0 if debouncing isn't needed */
  31. #define DEBOUNCING_DELAY 5
  32. /* serial.c configuration for split keyboard */
  33. #define SOFT_SERIAL_PIN D0
  34. /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
  35. #define LOCKING_SUPPORT_ENABLE
  36. /* Locking resynchronize hack */
  37. #define LOCKING_RESYNC_ENABLE
  38. /* Enables This makes it easier for fast typists to use dual-function keys */
  39. #define PERMISSIVE_HOLD
  40. /* ws2812 RGB LED */
  41. #define RGB_DI_PIN D3
  42. #define RGBLED_NUM 12 // Number of LEDs
  43. /*
  44. * Feature disable options
  45. * These options are also useful to firmware size reduction.
  46. */
  47. /* disable debug print */
  48. // #define NO_DEBUG
  49. /* disable print */
  50. // #define NO_PRINT
  51. /* disable action features */
  52. //#define NO_ACTION_LAYER
  53. //#define NO_ACTION_TAPPING
  54. //#define NO_ACTION_ONESHOT
  55. //#define NO_ACTION_MACRO
  56. //#define NO_ACTION_FUNCTION