]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/ckeys/handwire_101/config.h
40faec066b2b3941c5d0b91f882adfd0bdff6450
[qmk_firmware.git] / keyboards / ckeys / handwire_101 / config.h
1 /*
2 Copyright 2012 Jun Wako <wakojun@gmail.com>
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      0x6060
25 #define DEVICE_VER      0x0001
26 #define MANUFACTURER    ckeys_handwire
27 #define PRODUCT         ckeys_handwire
28 #define DESCRIPTION     4x4 handwire workshop board
29
30 /* key matrix size */
31 #define MATRIX_ROWS 4
32 #define MATRIX_COLS 4
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 { F4, F5, F6, F7 }
45 #define MATRIX_COL_PINS { D4, C6, D7, E6 }
46
47 /* COL2ROW, ROW2COL*/
48 #define DIODE_DIRECTION COL2ROW
49
50 //#define BACKLIGHT_PIN B7
51 // #define BACKLIGHT_BREATHING
52 //#define BACKLIGHT_LEVELS 3
53
54
55 /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
56 #define DEBOUNCING_DELAY 5
57
58 /* define if matrix has ghost (lacks anti-ghosting diodes) */
59 //#define MATRIX_HAS_GHOST
60
61 /* number of backlight levels */
62
63 /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
64 #define LOCKING_SUPPORT_ENABLE
65 /* Locking resynchronize hack */
66 #define LOCKING_RESYNC_ENABLE
67
68 /*
69  * MIDI options
70  */
71
72 /* Prevent use of disabled MIDI features in the keymap */
73 //#define MIDI_ENABLE_STRICT 1
74
75 /* enable basic MIDI features:
76    - MIDI notes can be sent when in Music mode is on
77 */
78 //#define MIDI_BASIC
79
80 /* enable advanced MIDI features:
81    - MIDI notes can be added to the keymap
82    - Octave shift and transpose
83    - Virtual sustain, portamento, and modulation wheel
84    - etc.
85 */
86 #define MIDI_ADVANCED
87
88 /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
89 //#define MIDI_TONE_KEYCODE_OCTAVES 1
90
91 /*
92  * Force NKRO
93  *
94  * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved
95  * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the
96  * makefile for this to work.)
97  *
98  * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N)
99  * until the next keyboard reset.
100  *
101  * NKRO may prevent your keystrokes from being detected in the BIOS, but it is
102  * fully operational during normal computer usage.
103  *
104  * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N)
105  * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by
106  * bootmagic, NKRO mode will always be enabled until it is toggled again during a
107  * power-up.
108  *
109  */
110 //#define FORCE_NKRO
111
112 /*
113  * Magic Key Options
114  *
115  * Magic keys are hotkey commands that allow control over firmware functions of
116  * the keyboard. They are best used in combination with the HID Listen program,
117  * found here: https://www.pjrc.com/teensy/hid_listen.html
118  *
119  * The options below allow the magic key functionality to be changed. This is
120  * useful if your keyboard/keypad is missing keys and you want magic key support.
121  *
122  */
123
124 /* control how magic key switches layers */
125 //#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS  true
126 //#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS  true
127 //#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM false
128
129 /* override magic key keymap */
130 //#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS
131 //#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS
132 //#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM
133 //#define MAGIC_KEY_HELP1          H
134 //#define MAGIC_KEY_HELP2          SLASH
135 //#define MAGIC_KEY_DEBUG          D
136 //#define MAGIC_KEY_DEBUG_MATRIX   X
137 //#define MAGIC_KEY_DEBUG_KBD      K
138 //#define MAGIC_KEY_DEBUG_MOUSE    M
139 //#define MAGIC_KEY_VERSION        V
140 //#define MAGIC_KEY_STATUS         S
141 //#define MAGIC_KEY_CONSOLE        C
142 //#define MAGIC_KEY_LAYER0_ALT1    ESC
143 //#define MAGIC_KEY_LAYER0_ALT2    GRAVE
144 //#define MAGIC_KEY_LAYER0         0
145 //#define MAGIC_KEY_LAYER1         1
146 //#define MAGIC_KEY_LAYER2         2
147 //#define MAGIC_KEY_LAYER3         3
148 //#define MAGIC_KEY_LAYER4         4
149 //#define MAGIC_KEY_LAYER5         5
150 //#define MAGIC_KEY_LAYER6         6
151 //#define MAGIC_KEY_LAYER7         7
152 //#define MAGIC_KEY_LAYER8         8
153 //#define MAGIC_KEY_LAYER9         9
154 //#define MAGIC_KEY_BOOTLOADER     PAUSE
155 //#define MAGIC_KEY_LOCK           CAPS
156 //#define MAGIC_KEY_EEPROM         E
157 //#define MAGIC_KEY_NKRO           N
158 //#define MAGIC_KEY_SLEEP_LED      Z
159
160 // Audio Click
161 #define AUDIO_CLICKY
162
163 // Music Mode Polyphony
164 // NOTE: Must change polyphony_rate to a number higher than 0 in voices.c
165 #define AUDIO_VOICES
166 #define PITCH_STANDARD_A 880.0f
167
168 // Mouse keys
169 #define MOUSEKEY_DELAY          0
170 #define MOUSEKEY_INTERVAL       20
171 #define MOUSEKEY_MAX_SPEED      2
172 #define MOUSEKEY_TIME_TO_MAX    5
173 #define MOUSEKEY_WHEEL_DELAY    0
174
175 /*
176  * Feature disable options
177  *  These options are also useful to firmware size reduction.
178  */
179
180 /* disable debug print */
181 //#define NO_DEBUG
182
183 /* disable print */
184 //#define NO_PRINT
185
186 /* disable action features */
187 //#define NO_ACTION_LAYER
188 //#define NO_ACTION_TAPPING
189 //#define NO_ACTION_ONESHOT
190 //#define NO_ACTION_MACRO
191 //#define NO_ACTION_FUNCTION