1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
/* Copyright 2020 Adam Honse <calcprogrammer1@gmail.com>
* Copyright 2020 Dimitris Mantzouranis <d3xter93@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include "config_common.h"
/* USB Device descriptor parameter */
#define VENDOR_ID 0x3434
#define PRODUCT_ID 0xFE20
#define DEVICE_VER 0x0001
#define MANUFACTURER Keychron
// \x43\x31 is "C1" in ASCII hex, this is used to prevent macro expansion, because C1 is also a pin macro.
#define PRODUCT \x43\x31
#define DESCRIPTION \x43\x31 QMK
#define WAIT_FOR_USB
#define USB_MAX_POWER_CONSUMPTION 100
/* key matrix size */
#define MATRIX_ROWS 6
#define MATRIX_COLS 17
#define DIODE_DIRECTION COL2ROW
#define MATRIX_COL_PINS { A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, D0 }
#define MATRIX_ROW_PINS { C3, C4, C5, C6, C7, C8 }
/* Keep LED Matrix pins so that we can set them low */
#define LED_MATRIX_ROW_PINS { C0, C1, C2, D4, C9, C10 }
/* Connects each switch in the dip switch to the GPIO pin of the MCU */
#define DIP_SWITCH_PINS { D7 }
/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
#define DEBOUNCE 5
/* LED Status indicators */
#define LED_CAPS_LOCK_PIN B3
#define LED_PIN_ON_STATE 1
#define LED_MAC_PIN B4
#define LED_WIN_PIN B5
/* Enable NKRO by default */
#define FORCE_NKRO
#define DYNAMIC_KEYMAP_LAYER_COUNT 4
#define DYNAMIC_KEYMAP_EEPROM_MAX_ADDR 1000
/* Polling Rate */
#define USB_POLLING_INTERVAL_MS 1
|