diff options
Diffstat (limited to 'keyboards/kinesis/kint36/config.h')
-rw-r--r-- | keyboards/kinesis/kint36/config.h | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/keyboards/kinesis/kint36/config.h b/keyboards/kinesis/kint36/config.h new file mode 100644 index 000000000..be5752603 --- /dev/null +++ b/keyboards/kinesis/kint36/config.h | |||
@@ -0,0 +1,66 @@ | |||
1 | /* Copyright 2020 QMK | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #pragma once | ||
18 | |||
19 | /* USB Device descriptor parameter */ | ||
20 | #undef VENDOR_ID | ||
21 | #define VENDOR_ID 0x1209 | ||
22 | #undef PRODUCT_ID | ||
23 | #define PRODUCT_ID 0x345C | ||
24 | #undef DEVICE_VER | ||
25 | #define DEVICE_VER 0x0001 | ||
26 | #undef MANUFACTURER | ||
27 | #define MANUFACTURER "https://github.com/stapelberg" | ||
28 | #undef PRODUCT | ||
29 | #define PRODUCT "kinT (kint36)" | ||
30 | |||
31 | /* key matrix size */ | ||
32 | #define MATRIX_ROWS 15 | ||
33 | #define MATRIX_COLS 7 | ||
34 | |||
35 | /* | ||
36 | * Keyboard Matrix Assignments | ||
37 | * | ||
38 | * Change this to how you wired your keyboard | ||
39 | * COLS: AVR pins used for columns, left to right | ||
40 | * ROWS: AVR pins used for rows, top to bottom | ||
41 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
42 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
43 | * | ||
44 | */ | ||
45 | #define MATRIX_ROW_PINS { D3, C3, C4, C6, D2, B0, D7, A12, A13, B17, B16, D0, B1, C2, D6 } | ||
46 | #define MATRIX_COL_PINS { B3, D1, C0, D5, C1, B2, D4 } | ||
47 | |||
48 | #define UNUSED_PINS | ||
49 | |||
50 | /* COL2ROW or ROW2COL */ | ||
51 | #define DIODE_DIRECTION COL2ROW | ||
52 | |||
53 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
54 | #define DEBOUNCE 5 | ||
55 | |||
56 | #define IGNORE_MOD_TAP_INTERRUPT | ||
57 | |||
58 | // Reduce input latency by lowering the USB polling interval | ||
59 | // from its 10ms default to the 1ms minimum that USB 1.x (Full Speed) allows: | ||
60 | #define USB_POLLING_INTERVAL_MS 1 | ||
61 | |||
62 | #define LED_PIN_ON_STATE 0 | ||
63 | #define LED_NUM_LOCK_PIN A14 | ||
64 | #define LED_CAPS_LOCK_PIN C7 | ||
65 | #define LED_SCROLL_LOCK_PIN A5 | ||
66 | #define LED_COMPOSE_PIN E26 | ||