config.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. /* key combination for command */
  39. #define IS_COMMAND() ( \
  40. keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
  41. )
  42. /* Enables This makes it easier for fast typists to use dual-function keys */
  43. #define PERMISSIVE_HOLD
  44. /* ws2812 RGB LED */
  45. #define RGB_DI_PIN D3
  46. #define RGBLED_NUM 12 // Number of LEDs
  47. /*
  48. * Feature disable options
  49. * These options are also useful to firmware size reduction.
  50. */
  51. /* disable debug print */
  52. // #define NO_DEBUG
  53. /* disable print */
  54. // #define NO_PRINT
  55. /* disable action features */
  56. //#define NO_ACTION_LAYER
  57. //#define NO_ACTION_TAPPING
  58. //#define NO_ACTION_ONESHOT
  59. //#define NO_ACTION_MACRO
  60. //#define NO_ACTION_FUNCTION