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.

104 lines
2.7 KiB

  1. #pragma once
  2. #include "config_common.h"
  3. /* USB Device descriptor parameter */
  4. #define VENDOR_ID 0xF7E0
  5. #define PRODUCT_ID 0x0412
  6. #define DEVICE_VER 0x0003
  7. #define MANUFACTURER Fate Everywhere
  8. #define PRODUCT Stand Aside
  9. /* key matrix size */
  10. #define MATRIX_ROWS 8
  11. #define MATRIX_COLS 8
  12. /*
  13. * Keyboard Matrix Assignments
  14. *
  15. * Change this to how you wired your keyboard
  16. * COLS: AVR pins used for columns, left to right
  17. * ROWS: AVR pins used for rows, top to bottom
  18. * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
  19. * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
  20. *
  21. */
  22. #define MATRIX_ROW_PINS { D1, F4, F6, F7, B1, B3, B2, B6 }
  23. #define MATRIX_COL_PINS { F5, D0, D4, C6, D7, E6, B4, B5 }
  24. #define UNUSED_PINS {}
  25. /* COL2ROW, ROW2COL */
  26. #define DIODE_DIRECTION COL2ROW
  27. // #define BACKLIGHT_PIN C7
  28. // #define BACKLIGHT_BREATHING
  29. // #define BACKLIGHT_LEVELS 3
  30. /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
  31. #define DEBOUNCE 5
  32. /* define if matrix has ghost (lacks anti-ghosting diodes) */
  33. //#define MATRIX_HAS_GHOST
  34. /* number of backlight levels */
  35. /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
  36. #define LOCKING_SUPPORT_ENABLE
  37. /* Locking resynchronize hack */
  38. #define LOCKING_RESYNC_ENABLE
  39. /*
  40. * Enable RGB Underlighting
  41. */
  42. #define RGB_DI_PIN C7
  43. #define RGBLED_NUM 12
  44. #define RGBLIGHT_ANIMATIONS
  45. /* If defined, GRAVE_ESC will always act as ESC when CTRL is held.
  46. * This is userful for the Windows task manager shortcut (ctrl+shift+esc).
  47. */
  48. // #define GRAVE_ESC_CTRL_OVERRIDE
  49. /*
  50. * Force NKRO
  51. *
  52. * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved
  53. * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the
  54. * makefile for this to work.)
  55. *
  56. * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N)
  57. * until the next keyboard reset.
  58. *
  59. * NKRO may prevent your keystrokes from being detected in the BIOS, but it is
  60. * fully operational during normal computer usage.
  61. *
  62. * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N)
  63. * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by
  64. * bootmagic, NKRO mode will always be enabled until it is toggled again during a
  65. * power-up.
  66. *
  67. */
  68. //#define FORCE_NKRO
  69. /*
  70. * Feature disable options
  71. * These options are also useful to firmware size reduction.
  72. */
  73. /* disable debug print */
  74. //#define NO_DEBUG
  75. /* disable print */
  76. //#define NO_PRINT
  77. /* disable action features */
  78. //#define NO_ACTION_LAYER
  79. //#define NO_ACTION_TAPPING
  80. //#define NO_ACTION_ONESHOT
  81. //#define NO_ACTION_MACRO
  82. //#define NO_ACTION_FUNCTION