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.

51 lines
1.2 KiB

  1. #pragma once
  2. #include "config_common.h"
  3. /* USB Device descriptor parameter */
  4. #define VENDOR_ID 0xFEED
  5. #define PRODUCT_ID 0x6060
  6. #define DEVICE_VER 0x0001
  7. #define MANUFACTURER James Taylor
  8. #define PRODUCT Space Odyssey
  9. #define MOUSEKEY_INTERVAL 16
  10. #define MOUSEKEY_DELAY 0
  11. #define MOUSEKEY_TIME_TO_MAX 60
  12. #define MOUSEKEY_MAX_SPEED 7
  13. #define MOUSEKEY_WHEEL_DELAY 0
  14. /* key matrix size */
  15. #define MATRIX_ROWS 6
  16. #define MATRIX_COLS 12
  17. /* key matrix pins */
  18. #define MATRIX_ROW_PINS { F4, F5, F6, F7, B1, B3 }
  19. #define MATRIX_COL_PINS { B2, B6, B5, B4, E6, D7, C6, D4, D0, D1, D2, D3 }
  20. #define UNUSED_PINS
  21. /* COL2ROW or ROW2COL */
  22. #define DIODE_DIRECTION COL2ROW
  23. /* number of backlight levels */
  24. #ifdef BACKLIGHT_PIN
  25. #define BACKLIGHT_LEVELS 0
  26. #endif
  27. /* Set 0 if debouncing isn't needed */
  28. #define DEBOUNCE 5
  29. /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
  30. #define LOCKING_SUPPORT_ENABLE
  31. /* Locking resynchronize hack */
  32. #define LOCKING_RESYNC_ENABLE
  33. #ifdef RGB_DI_PIN
  34. #define RGBLIGHT_ANIMATIONS
  35. #define RGBLED_NUM 0
  36. #define RGBLIGHT_HUE_STEP 8
  37. #define RGBLIGHT_SAT_STEP 8
  38. #define RGBLIGHT_VAL_STEP 8
  39. #endif