config.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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 0x444D
  19. #define MANUFACTURER tshort
  20. /* mouse config */
  21. #define MOUSEKEY_INTERVAL 20
  22. #define MOUSEKEY_DELAY 0
  23. #define MOUSEKEY_TIME_TO_MAX 60
  24. #define MOUSEKEY_MAX_SPEED 7
  25. #define MOUSEKEY_WHEEL_DELAY 0
  26. /* Set 0 if debouncing isn't needed */
  27. #define DEBOUNCE 5
  28. /* serial.c configuration for split keyboard */
  29. #define SOFT_SERIAL_PIN D0
  30. /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
  31. #define LOCKING_SUPPORT_ENABLE
  32. /* Locking resynchronize hack */
  33. #define LOCKING_RESYNC_ENABLE
  34. /* Enables This makes it easier for fast typists to use dual-function keys */
  35. #define PERMISSIVE_HOLD
  36. /*
  37. * Feature disable options
  38. * These options are also useful to firmware size reduction.
  39. */
  40. /* disable debug print */
  41. // #define NO_DEBUG
  42. /* disable print */
  43. // #define NO_PRINT
  44. /* disable action features */
  45. //#define NO_ACTION_LAYER
  46. //#define NO_ACTION_TAPPING
  47. //#define NO_ACTION_ONESHOT
  48. //#define NO_ACTION_MACRO
  49. //#define NO_ACTION_FUNCTION