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.

58 lines
1.3 KiB

  1. #ifndef CONFIG_H
  2. #define CONFIG_H
  3. #include "config_common.h"
  4. /* USB Device descriptor parameter */
  5. #define VENDOR_ID 0xFEED
  6. #define PRODUCT_ID 0x6060
  7. #define DEVICE_VER 0x0001
  8. #define MANUFACTURER Matthew Cordier
  9. #define PRODUCT Zlant
  10. #define DESCRIPTION keyboard firmware for Zlant
  11. /* key matrix size */
  12. #define MATRIX_ROWS 4
  13. #define MATRIX_COLS 12
  14. /* key matrix pins */
  15. #define MATRIX_ROW_PINS { B0, B1, D4, D5 }
  16. #define MATRIX_COL_PINS { F0, F1, F4, F5, F6, F7, B7, D1, D2, D3, B3, B2 }
  17. #define UNUSED_PINS
  18. /* COL2ROW or ROW2COL */
  19. #define DIODE_DIRECTION COL2ROW
  20. /* number of backlight levels */
  21. #ifdef BACKLIGHT_PIN
  22. #define BACKLIGHT_LEVELS 0
  23. #endif
  24. /* Set 0 if debouncing isn't needed */
  25. #define DEBOUNCING_DELAY 5
  26. /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
  27. #define LOCKING_SUPPORT_ENABLE
  28. /* Locking resynchronize hack */
  29. #define LOCKING_RESYNC_ENABLE
  30. /* key combination for command */
  31. #define IS_COMMAND() ( \
  32. keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
  33. )
  34. /* prevent stuck modifiers */
  35. #define PREVENT_STUCK_MODIFIERS
  36. #define RGB_DI_PIN D6
  37. #ifdef RGB_DI_PIN
  38. #define RGBLIGHT_ANIMATIONS
  39. #define RGBLED_NUM 12
  40. #define RGBLIGHT_HUE_STEP 8
  41. #define RGBLIGHT_SAT_STEP 8
  42. #define RGBLIGHT_VAL_STEP 8
  43. #endif
  44. #endif