diff options
Diffstat (limited to 'keyboards/portal_66/hotswap/config.h')
-rw-r--r-- | keyboards/portal_66/hotswap/config.h | 109 |
1 files changed, 109 insertions, 0 deletions
diff --git a/keyboards/portal_66/hotswap/config.h b/keyboards/portal_66/hotswap/config.h new file mode 100644 index 000000000..db4c59bd4 --- /dev/null +++ b/keyboards/portal_66/hotswap/config.h | |||
@@ -0,0 +1,109 @@ | |||
1 | /* | ||
2 | Copyright 2021 Matthew Dias | ||
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 0x504C | ||
24 | #define PRODUCT_ID 0x5067 | ||
25 | #define DEVICE_VER 0x0001 | ||
26 | #define MANUFACTURER Parallel Limited | ||
27 | #define PRODUCT Portal 66 | ||
28 | |||
29 | /* key matrix size */ | ||
30 | #define MATRIX_ROWS 5 | ||
31 | #define MATRIX_COLS 16 | ||
32 | |||
33 | /* | ||
34 | * Keyboard Matrix Assignments | ||
35 | * | ||
36 | * Change this to how you wired your keyboard | ||
37 | * COLS: AVR pins used for columns, left to right | ||
38 | * ROWS: AVR pins used for rows, top to bottom | ||
39 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
40 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
41 | * | ||
42 | */ | ||
43 | #define MATRIX_ROW_PINS { E6, B7, F7, F4, F5 } | ||
44 | #define MATRIX_COL_PINS { F6, B0, F1, C7, C6, B6, B5, B4, D7, D6, D4, D5, D3, D2, D1, D0 } | ||
45 | #define UNUSED_PINS | ||
46 | |||
47 | /* COL2ROW, ROW2COL */ | ||
48 | #define DIODE_DIRECTION COL2ROW | ||
49 | |||
50 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
51 | #define DEBOUNCE 5 | ||
52 | |||
53 | /* define if matrix has ghost (lacks anti-ghosting diodes) */ | ||
54 | //#define MATRIX_HAS_GHOST | ||
55 | |||
56 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
57 | #define LOCKING_SUPPORT_ENABLE | ||
58 | /* Locking resynchronize hack */ | ||
59 | #define LOCKING_RESYNC_ENABLE | ||
60 | |||
61 | /* If defined, GRAVE_ESC will always act as ESC when CTRL is held. | ||
62 | * This is useful for the Windows task manager shortcut (ctrl+shift+esc). | ||
63 | */ | ||
64 | //#define GRAVE_ESC_CTRL_OVERRIDE | ||
65 | |||
66 | /* | ||
67 | * Force NKRO | ||
68 | * | ||
69 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | ||
70 | * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the | ||
71 | * makefile for this to work.) | ||
72 | * | ||
73 | * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) | ||
74 | * until the next keyboard reset. | ||
75 | * | ||
76 | * NKRO may prevent your keystrokes from being detected in the BIOS, but it is | ||
77 | * fully operational during normal computer usage. | ||
78 | * | ||
79 | * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) | ||
80 | * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by | ||
81 | * bootmagic, NKRO mode will always be enabled until it is toggled again during a | ||
82 | * power-up. | ||
83 | * | ||
84 | */ | ||
85 | //#define FORCE_NKRO | ||
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 | |||
103 | /* disable these deprecated features by default */ | ||
104 | #define NO_ACTION_MACRO | ||
105 | #define NO_ACTION_FUNCTION | ||
106 | |||
107 | /* Bootmagic Lite key configuration */ | ||
108 | //#define BOOTMAGIC_LITE_ROW 0 | ||
109 | //#define BOOTMAGIC_LITE_COLUMN 0 | ||