config.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. Copyright 2012 Jun Wako <wakojun@gmail.com>
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 2 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. #ifndef CONFIG_H_BEN
  15. #define CONFIG_H_BEN
  16. #include "config_common.h"
  17. #include "../../config.h"
  18. /* USB Device descriptor parameter */
  19. #define VENDOR_ID 0xFEED
  20. #define PRODUCT_ID 0x6060
  21. #define DEVICE_VER 0x0003
  22. #define MANUFACTURER SATAN
  23. #define PRODUCT GH60
  24. /*MOUSE CONFIG OPTIONS */
  25. #define MOUSEKEY_INTERVAL 20
  26. #define MOUSEKEY_DELAY 0
  27. #define MOUSEKEY_TIME_TO_MAX 45
  28. #define MOUSEKEY_MAX_SPEED 3
  29. #define MOUSEKEY_WHEEL_DELAY 0
  30. /*
  31. * Feature disable options
  32. * These options are also useful to firmware size reduction.
  33. */
  34. /* disable debug print */
  35. //#define NO_DEBUG
  36. /* disable print */
  37. //#define NO_PRINT
  38. /* disable action features */
  39. //#define NO_ACTION_LAYER
  40. //#define NO_ACTION_TAPPING
  41. //#define NO_ACTION_ONESHOT
  42. //#define NO_ACTION_MACRO
  43. //#define NO_ACTION_FUNCTION
  44. #endif