aboutsummaryrefslogtreecommitdiff
path: root/keyboards/durgod/k320/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/durgod/k320/config.h')
-rw-r--r--keyboards/durgod/k320/config.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/keyboards/durgod/k320/config.h b/keyboards/durgod/k320/config.h
new file mode 100644
index 000000000..70438900e
--- /dev/null
+++ b/keyboards/durgod/k320/config.h
@@ -0,0 +1,53 @@
1/*
2Copyright 2021 kuenhlee and Don Kjer
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along 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 0xD60D
24#define PRODUCT_ID 0x3200
25#define DEVICE_VER 0x0001
26#define MANUFACTURER Hoksi Technology
27#define PRODUCT DURGOD Taurus K320 (QMK)
28
29/* key matrix size */
30#define MATRIX_ROWS 7
31#define MATRIX_COLS 16
32
33#define MATRIX_ROW_PINS { A0, A1, A2, A3, A4, A5, A6 }
34#define MATRIX_COL_PINS { C4, C5, B0, B1, B2, B10, B11, B12, B13, B14, B15, C6, C7, C10, C11, C12 }
35
36/* COL2ROW, ROW2COL*/
37#define DIODE_DIRECTION ROW2COL
38
39/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
40#define DEBOUNCE 7
41
42/* Bootmagic Lite key configuration */
43#define EARLY_INIT_PERFORM_BOOTLOADER_JUMP TRUE
44#define BOOTMAGIC_LITE_ROW 0
45#define BOOTMAGIC_LITE_COLUMN 0
46
47/* LED indicator pins */
48#define LED_CAPS_LOCK_PIN C9
49#define LED_SCROLL_LOCK_PIN A8
50#define LED_WIN_LOCK_PIN A9
51#define LED_MR_LOCK_PIN A10
52#define LED_PIN_ON_STATE 0
53