12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #ifndef CONFIG_H
- #define CONFIG_H
- #define VENDOR_ID 0xFEED
- #define PRODUCT_ID 0x6060
- #define DEVICE_VER 0x0001
- #define MANUFACTURER GON
- #define PRODUCT NerD
- #define DESCRIPTION t.m.k. keyboard firmware for NerD
- #define MATRIX_ROWS 9
- #define MATRIX_COLS 10
- #define DEBOUNCE 5
- #define BACKLIGHT_LEVELS 2
- #define LOCKING_SUPPORT_ENABLE
- #define LOCKING_RESYNC_ENABLE
- #define IS_COMMAND() ( \
- keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
- )
- #endif
|