diff options
Diffstat (limited to 'keyboards/duck/jetfire/config.h')
-rw-r--r-- | keyboards/duck/jetfire/config.h | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/keyboards/duck/jetfire/config.h b/keyboards/duck/jetfire/config.h new file mode 100644 index 000000000..3b6c7d89f --- /dev/null +++ b/keyboards/duck/jetfire/config.h | |||
@@ -0,0 +1,96 @@ | |||
1 | /* | ||
2 | Copyright 2018 MechMerlin | ||
3 | |||
4 | This program is free software: you can redistribute it and/or modify | ||
5 | it under the terms of the GNU General Public License as published by | ||
6 | the Free Software Foundation, either version 2 of the License, or | ||
7 | (at your option) any later version. | ||
8 | |||
9 | This program is distributed in the hope that it will be useful, | ||
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | GNU General Public License for more details. | ||
13 | |||
14 | You should have received a copy of the GNU General Public License | ||
15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | */ | ||
17 | |||
18 | #pragma once | ||
19 | |||
20 | #include "config_common.h" | ||
21 | |||
22 | /* USB Device descriptor parameter */ | ||
23 | #define VENDOR_ID 0x444B // Duck ("DK") | ||
24 | #define PRODUCT_ID 0x4A46 // Jetfire ("JF") | ||
25 | #define DEVICE_VER 0x0001 | ||
26 | #define MANUFACTURER Duck | ||
27 | #define PRODUCT Jetfire | ||
28 | |||
29 | /* key matrix size */ | ||
30 | #define MATRIX_ROWS 6 | ||
31 | #define MATRIX_COLS 20 | ||
32 | |||
33 | /* COL2ROW, ROW2COL*/ | ||
34 | #define DIODE_DIRECTION COL2ROW | ||
35 | |||
36 | #define BACKLIGHT_LEVELS 1 | ||
37 | |||
38 | #define RGB_DI_PIN D6 | ||
39 | // #ifdef RGB_DI_PIN | ||
40 | #define RGBLIGHT_ANIMATIONS | ||
41 | #define RGBLED_NUM 23 | ||
42 | // #define RGBLIGHT_HUE_STEP 8 | ||
43 | // #define RGBLIGHT_SAT_STEP 8 | ||
44 | // #define RGBLIGHT_VAL_STEP 8 | ||
45 | // #endif | ||
46 | |||
47 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
48 | #define DEBOUNCE 5 | ||
49 | |||
50 | /* Set to top left most key */ | ||
51 | #define BOOTMAGIC_LITE_ROW 5 | ||
52 | #define BOOTMAGIC_LITE_COLUMN 10 | ||
53 | |||
54 | /* If defined, GRAVE_ESC will always act as ESC when CTRL is held. | ||
55 | * This is userful for the Windows task manager shortcut (ctrl+shift+esc). | ||
56 | */ | ||
57 | // #define GRAVE_ESC_CTRL_OVERRIDE | ||
58 | |||
59 | /* | ||
60 | * Force NKRO | ||
61 | * | ||
62 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | ||
63 | * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the | ||
64 | * makefile for this to work.) | ||
65 | * | ||
66 | * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) | ||
67 | * until the next keyboard reset. | ||
68 | * | ||
69 | * NKRO may prevent your keystrokes from being detected in the BIOS, but it is | ||
70 | * fully operational during normal computer usage. | ||
71 | * | ||
72 | * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) | ||
73 | * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by | ||
74 | * bootmagic, NKRO mode will always be enabled until it is toggled again during a | ||
75 | * power-up. | ||
76 | * | ||
77 | */ | ||
78 | //#define FORCE_NKRO | ||
79 | |||
80 | /* | ||
81 | * Feature disable options | ||
82 | * These options are also useful to firmware size reduction. | ||
83 | */ | ||
84 | |||
85 | /* disable debug print */ | ||
86 | //#define NO_DEBUG | ||
87 | |||
88 | /* disable print */ | ||
89 | //#define NO_PRINT | ||
90 | |||
91 | /* disable action features */ | ||
92 | //#define NO_ACTION_LAYER | ||
93 | //#define NO_ACTION_TAPPING | ||
94 | //#define NO_ACTION_ONESHOT | ||
95 | //#define NO_ACTION_MACRO | ||
96 | //#define NO_ACTION_FUNCTION | ||