diff options
Diffstat (limited to 'keyboards/barleycorn/config.h')
-rw-r--r-- | keyboards/barleycorn/config.h | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/keyboards/barleycorn/config.h b/keyboards/barleycorn/config.h new file mode 100644 index 000000000..77714a87f --- /dev/null +++ b/keyboards/barleycorn/config.h | |||
@@ -0,0 +1,103 @@ | |||
1 | /* | ||
2 | Copyright 2020 Yiancar | ||
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 | #define VENDOR_ID 0x8968 | ||
23 | #define PRODUCT_ID 0x4749 | ||
24 | #define DEVICE_VER 0x0001 | ||
25 | #define MANUFACTURER Yiancar-Designs | ||
26 | #define PRODUCT Barleycorn | ||
27 | |||
28 | /* key matrix size */ | ||
29 | #define MATRIX_ROWS 5 | ||
30 | #define MATRIX_COLS 18 | ||
31 | |||
32 | /* | ||
33 | * Keyboard Matrix Assignments | ||
34 | * | ||
35 | * Change this to how you wired your keyboard | ||
36 | * COLS: AVR pins used for columns, left to right | ||
37 | * ROWS: AVR pins used for rows, top to bottom | ||
38 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
39 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
40 | * | ||
41 | */ | ||
42 | |||
43 | /* A Custom matrix.c is used to poll the port expander C6 shows that the pins are hardwired there */ | ||
44 | #define MATRIX_ROW_PINS { B4, B3, B2, B1, C1 } | ||
45 | #define MATRIX_COL_PINS { B0, D7, D6, D4, D1, D0, C3, C2, D5, D5, D5, D5, D5, D5, D5, D5, D5, D5 } | ||
46 | #define UNUSED_PINS | ||
47 | #define PORT_EXPANDER_ADDRESS 0x20 | ||
48 | |||
49 | /* COL2ROW, ROW2COL*/ | ||
50 | #define DIODE_DIRECTION COL2ROW | ||
51 | |||
52 | #define USB_MAX_POWER_CONSUMPTION 100 | ||
53 | |||
54 | |||
55 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
56 | #define LOCKING_SUPPORT_ENABLE | ||
57 | /* Locking resynchronize hack */ | ||
58 | #define LOCKING_RESYNC_ENABLE | ||
59 | |||
60 | /* If defined, GRAVE_ESC will always act as ESC when CTRL is held. | ||
61 | * This is userful for the Windows task manager shortcut (ctrl+shift+esc). | ||
62 | */ | ||
63 | // #define GRAVE_ESC_CTRL_OVERRIDE | ||
64 | |||
65 | /* | ||
66 | * Force NKRO | ||
67 | * | ||
68 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | ||
69 | * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the | ||
70 | * makefile for this to work.) | ||
71 | * | ||
72 | * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) | ||
73 | * until the next keyboard reset. | ||
74 | * | ||
75 | * NKRO may prevent your keystrokes from being detected in the BIOS, but it is | ||
76 | * fully operational during normal computer usage. | ||
77 | * | ||
78 | * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) | ||
79 | * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by | ||
80 | * bootmagic, NKRO mode will always be enabled until it is toggled again during a | ||
81 | * power-up. | ||
82 | * | ||
83 | */ | ||
84 | //#define FORCE_NKRO | ||
85 | |||
86 | |||
87 | /* | ||
88 | * Feature disable options | ||
89 | * These options are also useful to firmware size reduction. | ||
90 | */ | ||
91 | |||
92 | /* disable debug print */ | ||
93 | //#define NO_DEBUG | ||
94 | |||
95 | /* disable print */ | ||
96 | //#define NO_PRINT | ||
97 | |||
98 | /* disable action features */ | ||
99 | //#define NO_ACTION_LAYER | ||
100 | //#define NO_ACTION_TAPPING | ||
101 | //#define NO_ACTION_ONESHOT | ||
102 | //#define NO_ACTION_MACRO | ||
103 | //#define NO_ACTION_FUNCTION | ||