]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/handwired/ep40/config.h
Update whitefox/konstantin keymap (#4436)
[qmk_firmware.git] / keyboards / handwired / ep40 / config.h
1 /*
2 Copyright 2018 Elliot Powell
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       0xFEED
24 #define PRODUCT_ID      0x4040
25 #define DEVICE_VER      0x0001
26 #define MANUFACTURER    Elliot Powell
27 #define PRODUCT         ep40
28 #define DESCRIPTION     A simple 40% keyboard
29
30 /* key matrix size */
31 #define MATRIX_ROWS 4
32 #define MATRIX_COLS 12
33
34 /*
35  * Keyboard Matrix Assignments
36  *
37  * Change this to how you wired your keyboard
38  * COLS: AVR pins used for columns, left to right
39  * ROWS: AVR pins used for rows, top to bottom
40  * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
41  *                  ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
42  *
43 */
44 #define MATRIX_ROW_PINS { C7, C6, B6, B5 }
45 #define MATRIX_COL_PINS { F6, F5, F4, F1, F0, D2, D3, D5, D4, D6, D7, B4 }
46
47 /* COL2ROW, ROW2COL, or CUSTOM_MATRIX */
48 #define DIODE_DIRECTION COL2ROW
49
50 /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
51 #define DEBOUNCING_DELAY 5
52
53 /* define if matrix has ghost (lacks anti-ghosting diodes) */
54 //#define MATRIX_HAS_GHOST
55
56 /* If defined, GRAVE_ESC will always act as ESC when CTRL is held.
57  * This is userful for the Windows task manager shortcut (ctrl+shift+esc).
58  */
59 // #define GRAVE_ESC_CTRL_OVERRIDE
60
61 /*
62  * Force NKRO
63  *
64  * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved
65  * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the
66  * makefile for this to work.)
67  *
68  * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N)
69  * until the next keyboard reset.
70  *
71  * NKRO may prevent your keystrokes from being detected in the BIOS, but it is
72  * fully operational during normal computer usage.
73  *
74  * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N)
75  * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by
76  * bootmagic, NKRO mode will always be enabled until it is toggled again during a
77  * power-up.
78  *
79  */
80 //#define FORCE_NKRO
81
82 /*
83  * Magic Key Options
84  *
85  * Magic keys are hotkey commands that allow control over firmware functions of
86  * the keyboard. They are best used in combination with the HID Listen program,
87  * found here: https://www.pjrc.com/teensy/hid_listen.html
88  *
89  * The options below allow the magic key functionality to be changed. This is
90  * useful if your keyboard/keypad is missing keys and you want magic key support.
91  *
92  */
93
94 /* key combination for magic key command */
95 #define IS_COMMAND() ( \
96     keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
97 )
98 /*
99  * Feature disable options
100  *  These options are also useful to firmware size reduction.
101  */
102
103 /* disable debug print */
104 //#define NO_DEBUG
105
106 /* disable print */
107 //#define NO_PRINT
108
109 /* disable action features */
110 //#define NO_ACTION_LAYER
111 //#define NO_ACTION_TAPPING
112 //#define NO_ACTION_ONESHOT
113 //#define NO_ACTION_MACRO
114 //#define NO_ACTION_FUNCTION