]> git.donarmstrong.com Git - qmk_firmware.git/blob - docs/config_options.md
Update config_options.md
[qmk_firmware.git] / docs / config_options.md
1 # Configuring QMK
2
3 QMK is nearly infinitely configurable. Wherever possible we err on the side of allowing users to customize their keyboard, even at the expense of code size. That level of flexibility makes for a daunting configuration experience, however.
4
5 There are two main types of configuration files in QMK- `config.h` and `rules.mk`. These files exist at various levels in QMK and all files of the same type are combined to build the final configuration. The levels, from lowest priority to highest priority, are:
6
7 * QMK Default
8 * Keyboard
9 * Folders (Up to 5 levels deep)
10 * Keymap
11
12 ## QMK Default
13
14 Every available setting in QMK has a default. If that setting is not set at the Keyboard, Folder, or Keymap level this is the setting that will be used.
15
16 ## Keyboard
17
18 This level contains config options that should apply to the whole keyboard. Some settings won't change in revisions, or most keymaps. Other settings are merely defaults for this keyboard and can be overridden by folders and/or keymaps.
19
20 ## Folders
21
22 Some keyboards have folders and sub-folders to allow for different hardware configurations. Most keyboards only go 1 folder deep, but QMK supports structures up to 5 folders deep. Each folder can have its own `config.h` and `rules.mk` files that are incorporated into the final configuration.
23
24 ## Keymap
25
26 This level contains all of the options for that particular keymap. If you wish to override a previous declaration, you can use `#undef <variable>` to undefine it, where you can then redefine it without an error.
27
28 # The `config.h` file
29
30 This is a C header file that is one of the first things included, and will persist over the whole project (if included). Lots of variables can be set here and accessed elsewhere. The `config.h` file shouldn't be including other `config.h` files, or anything besides this:
31
32     #include "config_common.h"
33
34 ## `config.h` Options
35
36 ### Hardware Options
37 * `#define VENDOR_ID 0x1234`
38   * defines your VID, and for most DIY projects, can be whatever you want
39 * `#define PRODUCT_ID 0x5678`
40   * defines your PID, and for most DIY projects, can be whatever you want
41 * `#define DEVICE_VER 0`
42   * defines the device version (often used for revisions)
43 * `#define MANUFACTURER Me`
44   * generally who/whatever brand produced the board
45 * `#define PRODUCT Board`
46   * the name of the keyboard
47 * `#define DESCRIPTION a keyboard`
48   * a short description of what the keyboard is
49 * `#define MATRIX_ROWS 5`
50   * the number of rows in your keyboard's matrix
51 * `#define MATRIX_COLS 15`
52   * the number of columns in your keyboard's matrix
53 * `#define MATRIX_ROW_PINS { D0, D5, B5, B6 }`
54   * pins of the rows, from top to bottom
55 * `#define MATRIX_COL_PINS { F1, F0, B0, C7, F4, F5, F6, F7, D4, D6, B4, D7 }`
56   * pins of the columns, from left to right
57 * `#define UNUSED_PINS { D1, D2, D3, B1, B2, B3 }`
58   * pins unused by the keyboard for reference
59 * `#define MATRIX_HAS_GHOST`
60   * define is matrix has ghost (unlikely)
61 * `#define DIODE_DIRECTION COL2ROW`
62   * COL2ROW or ROW2COL - how your matrix is configured. COL2ROW means the black mark on your diode is facing to the rows, and between the switch and the rows.
63 * `#define AUDIO_VOICES`
64   * turns on the alternate audio voices (to cycle through)
65 * `#define C6_AUDIO`
66   * enables audio on pin C6
67 * `#define B5_AUDIO`
68   * enables audio on pin B5 (duophony is enable if both are enabled)
69 * `#define BACKLIGHT_PIN B7`
70   * pin of the backlight - B5, B6, B7 use PWM, others use softPWM
71 * `#define BACKLIGHT_LEVELS 3`
72   * number of levels your backlight will have (not including off)
73 * `#define DEBOUNCING_DELAY 5`
74   * the delay when reading the value of the pin (5 is default)
75 * `#define LOCKING_SUPPORT_ENABLE`
76   * mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap
77 * `#define LOCKING_RESYNC_ENABLE`
78   * tries to keep switch state consistent with keyboard LED state
79 * `#define IS_COMMAND() ( keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) )`
80   * key combination that allows the use of magic commands (useful for debugging)
81
82 ### Features That Can Be Disabled
83
84 If you define these options you will disable the associated feature, which can save on code size.
85
86 * `#define NO_DEBUG`
87   * disable debuging
88 * `#define NO_PRINT`
89   * disable printing/debugging using hid_listen
90 * `#define NO_ACTION_LAYER`
91   * disable layers
92 * `#define NO_ACTION_TAPPING`
93   * disable tap dance and other tapping features
94 * `#define NO_ACTION_ONESHOT`
95   * disable one-shot modifiers
96 * `#define NO_ACTION_MACRO`
97   * disable all macro handling
98 * `#define NO_ACTION_FUNCTION`
99   * disable the action function (deprecated)
100
101 ### Features That Can Be Enabled
102
103 If you define these options you will enable the associated feature, which may increase your code size.
104
105 * `#define FORCE_NKRO`
106   * NKRO by default requires to be turned on, this forces it on during keyboard startup regardless of eeprom setting. NKRO can still be turned off but will be turned on again if the keyboard reboots.
107 * `#define PREVENT_STUCK_MODIFIERS`
108   * when switching layers, this will release all mods
109
110 ### Behaviors That Can Be Configured
111
112 * `#define TAPPING_TERM 200`
113   * how long before a tap becomes a hold
114 * `#define RETRO_TAPPING`
115   * tap anyway, even after TAPPING_TERM, if there was no other key interruption between press and release
116 * `#define TAPPING_TOGGLE 2`
117   * how many taps before triggering the toggle
118 * `#define PERMISSIVE_HOLD`
119   * makes tap and hold keys work better for fast typers who don't want tapping term set above 500
120 * `#define LEADER_TIMEOUT 300`
121   * how long before the leader key times out
122 * `#define ONESHOT_TIMEOUT 300`
123   * how long before oneshot times out
124 * `#define ONESHOT_TAP_TOGGLE 2`
125   * how many taps before oneshot toggle is triggered
126 * `#define IGNORE_MOD_TAP_INTERRUPT`
127   * makes it possible to do rolling combos (zx) with keys that convert to other keys on hold
128 * `#define QMK_KEYS_PER_SCAN 4`
129   * Allows sending more than one key per scan. By default, only one key event gets
130     sent via `process_record()` per scan. This has little impact on most typing, but
131     if you're doing a lot of chords, or your scan rate is slow to begin with, you can
132     have some delay in processing key events. Each press and release is a separate
133     event. For a keyboard with 1ms or so scan times, even a very fast typist isn't
134     going to produce the 500 keystrokes a second needed to actually get more than a
135     few ms of delay from this. But if you're doing chording on something with 3-4ms
136     scan times? You probably want this.
137
138 ### RGB Light Configuration
139
140 * `#define RGB_DI_PIN D7`
141   * pin the DI on the ws2812 is hooked-up to
142 * `#define RGBLIGHT_ANIMATIONS`
143   * run RGB animations
144 * `#define RGBLED_NUM 15`
145   * number of LEDs
146 * `#define RGBLIGHT_HUE_STEP 12`
147   * units to step when in/decreasing hue
148 * `#define RGBLIGHT_SAT_STEP 25`
149   * units to step when in/decresing saturation
150 * `#define RGBLIGHT_VAL_STEP 12`
151   * units to step when in/decreasing value (brightness)
152 * `#define RGBW_BB_TWI`
153   * bit-bangs twi to EZ RGBW LEDs (only required for Ergodox EZ)
154
155 ### Mouse Key Options
156
157 * `#define MOUSEKEY_INTERVAL 20`
158 * `#define MOUSEKEY_DELAY 0`
159 * `#define MOUSEKEY_TIME_TO_MAX 60`
160 * `#define MOUSEKEY_MAX_SPEED 7`
161 * `#define MOUSEKEY_WHEEL_DELAY 0`
162
163 # The `rules.mk` File
164
165 This is a [make](https://www.gnu.org/software/make/manual/make.html) file that is included by the top-level `Makefile`. It is used to set some information about the MCU that we will be compiling for as well as enabling and disabling certain features.
166
167 ## `rules.mk` options
168
169 ### Build Options
170
171 * `DEFAULT_FOLDER`
172   * Used to specify a default folder when a keyboard has more than one sub-folder.
173 * `SRC`
174   * Used to add files to the compilation/linking list.
175 * `LAYOUTS`
176   * A list of [layouts](feature_layouts.md) this keyboard supports.
177
178 ### AVR MCU Options
179 * `MCU = atmega32u4`
180 * `F_CPU = 16000000`
181 * `ARCH = AVR8`
182 * `F_USB = $(F_CPU)`
183 * `OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT`
184 * `BOOTLOADER = atmel-dfu` with the following options:
185   * `atmel-dfu`
186   * `lufa-dfu`
187   * `qmk-dfu`
188   * `halfkay`
189   * `caterina`
190   * `bootloadHID`
191
192 ### Feature Options
193
194 Use these to enable or disable building certain features. The more you have enabled the bigger your firmware will be, and you run the risk of building a firmware too large for your MCU.
195
196 * `BOOTMAGIC_ENABLE`
197   * Virtual DIP switch configuration(+1000)
198 * `MOUSEKEY_ENABLE`
199   * Mouse keys(+4700)
200 * `EXTRAKEY_ENABLE`
201   * Audio control and System control(+450)
202 * `CONSOLE_ENABLE`
203   * Console for debug(+400)
204 * `COMMAND_ENABLE`
205   * Commands for debug and configuration
206 * `NKRO_ENABLE`
207   * USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
208 * `AUDIO_ENABLE`
209   * Enable the audio subsystem.
210 * `RGBLIGHT_ENABLE`
211   * Enable keyboard underlight functionality
212 * `MIDI_ENABLE`
213   * MIDI controls
214 * `UNICODE_ENABLE`
215   * Unicode
216 * `BLUETOOTH_ENABLE`
217   * Enable Bluetooth with the Adafruit EZ-Key HID