Updated OLED Docs with notes about screen timeout. (#6276)
[jackhill/qmk/firmware.git] / docs / config_options.md
CommitLineData
67cc5ceb 1# Configuring QMK
40d82906 2
67cc5ceb 3QMK 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.
40d82906 4
67cc5ceb 5There 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:
40d82906 6
67cc5ceb 7* QMK Default
8* Keyboard
9* Folders (Up to 5 levels deep)
10* Keymap
40d82906 11
67cc5ceb 12## QMK Default
40d82906 13
67cc5ceb 14Every 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.
40d82906 15
67cc5ceb 16## Keyboard
40d82906 17
67cc5ceb 18This 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.
40d82906 19
67cc5ceb 20## Folders
40d82906 21
67cc5ceb 22Some 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.
40d82906
JH
23
24## Keymap
25
67cc5ceb 26This 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.
40d82906 27
7b0356d1 28# The `config.h` File
40d82906 29
62eed0e4
JH
30This 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"
67cc5ceb 33
67cc5ceb 34
07b90db8 35## Hardware Options
67cc5ceb 36* `#define VENDOR_ID 0x1234`
37 * defines your VID, and for most DIY projects, can be whatever you want
38* `#define PRODUCT_ID 0x5678`
39 * defines your PID, and for most DIY projects, can be whatever you want
40* `#define DEVICE_VER 0`
41 * defines the device version (often used for revisions)
42* `#define MANUFACTURER Me`
43 * generally who/whatever brand produced the board
44* `#define PRODUCT Board`
45 * the name of the keyboard
46* `#define DESCRIPTION a keyboard`
47 * a short description of what the keyboard is
48* `#define MATRIX_ROWS 5`
49 * the number of rows in your keyboard's matrix
50* `#define MATRIX_COLS 15`
51 * the number of columns in your keyboard's matrix
52* `#define MATRIX_ROW_PINS { D0, D5, B5, B6 }`
53 * pins of the rows, from top to bottom
54* `#define MATRIX_COL_PINS { F1, F0, B0, C7, F4, F5, F6, F7, D4, D6, B4, D7 }`
55 * pins of the columns, from left to right
56* `#define UNUSED_PINS { D1, D2, D3, B1, B2, B3 }`
57 * pins unused by the keyboard for reference
58* `#define MATRIX_HAS_GHOST`
59 * define is matrix has ghost (unlikely)
60* `#define DIODE_DIRECTION COL2ROW`
61 * 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.
0137b023 62* `#define DIRECT_PINS { { F1, F0, B0, C7 }, { F4, F5, F6, F7 } }`
63 * pins mapped to rows and columns, from left to right. Defines a matrix where each switch is connected to a separate pin and ground.
67cc5ceb 64* `#define AUDIO_VOICES`
65 * turns on the alternate audio voices (to cycle through)
22215a0e
MW
66* `#define C4_AUDIO`
67 * enables audio on pin C4
68* `#define C5_AUDIO`
69 * enables audio on pin C5
67cc5ceb 70* `#define C6_AUDIO`
71 * enables audio on pin C6
72* `#define B5_AUDIO`
eb7a821c 73 * enables audio on pin B5 (duophony is enables if one of B[5-7]\_AUDIO is enabled along with one of C[4-6]\_AUDIO)
22215a0e 74* `#define B6_AUDIO`
eb7a821c 75 * enables audio on pin B6 (duophony is enables if one of B[5-7]\_AUDIO is enabled along with one of C[4-6]\_AUDIO)
22215a0e 76* `#define B7_AUDIO`
eb7a821c 77 * enables audio on pin B7 (duophony is enables if one of B[5-7]\_AUDIO is enabled along with one of C[4-6]\_AUDIO)
67cc5ceb 78* `#define BACKLIGHT_PIN B7`
6bdcbfb2 79 * pin of the backlight - `B5`, `B6`, `B7` and `C6` (and `D4` on ATmega32A) use hardware PWM, others use software implementation
67cc5ceb 80* `#define BACKLIGHT_LEVELS 3`
4764e771 81 * number of levels your backlight will have (maximum 15 excluding off)
4931510a 82* `#define BACKLIGHT_BREATHING`
317b8095 83 * enables backlight breathing
4931510a
BG
84* `#define BREATHING_PERIOD 6`
85 * the length of one backlight "breath" in seconds
faaaa134 86* `#define DEBOUNCE 5`
67cc5ceb 87 * the delay when reading the value of the pin (5 is default)
88* `#define LOCKING_SUPPORT_ENABLE`
89 * mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap
90* `#define LOCKING_RESYNC_ENABLE`
91 * tries to keep switch state consistent with keyboard LED state
4d9b11af 92* `#define IS_COMMAND() (get_mods() == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)))`
67cc5ceb 93 * key combination that allows the use of magic commands (useful for debugging)
9b917891
CP
94* `#define USB_MAX_POWER_CONSUMPTION`
95 * sets the maximum power (in mA) over USB for the device (default: 500)
810c8db7
D
96* `#define F_SCL 100000L`
97 * sets the I2C clock rate speed for keyboards using I2C. The default is `400000L`, except for keyboards using `split_common`, where the default is `100000L`.
67cc5ceb 98
07b90db8 99## Features That Can Be Disabled
67cc5ceb 100
101If you define these options you will disable the associated feature, which can save on code size.
102
103* `#define NO_DEBUG`
af37bb2f 104 * disable debugging
67cc5ceb 105* `#define NO_PRINT`
106 * disable printing/debugging using hid_listen
107* `#define NO_ACTION_LAYER`
108 * disable layers
109* `#define NO_ACTION_TAPPING`
110 * disable tap dance and other tapping features
111* `#define NO_ACTION_ONESHOT`
112 * disable one-shot modifiers
113* `#define NO_ACTION_MACRO`
3ac6989c 114 * disable old style macro handling: MACRO() & action_get_macro
67cc5ceb 115* `#define NO_ACTION_FUNCTION`
3ac6989c 116 * disable calling of action_function() from the fn_actions array (deprecated)
67cc5ceb 117
07b90db8 118## Features That Can Be Enabled
67cc5ceb 119
120If you define these options you will enable the associated feature, which may increase your code size.
121
122* `#define FORCE_NKRO`
af37bb2f 123 * 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.
74344947
JW
124* `#define STRICT_LAYER_RELEASE`
125 * force a key release to be evaluated using the current layer stack instead of remembering which layer it came from (used for advanced cases)
67cc5ceb 126
07b90db8 127## Behaviors That Can Be Configured
67cc5ceb 128
129* `#define TAPPING_TERM 200`
7fef5ca2 130 * how long before a tap becomes a hold, if set above 500, a key tapped during the tapping term will turn it into a hold too
5701b75e
DJ
131* `#define TAPPING_TERM_PER_KEY`
132 * enables handling for per key `TAPPING_TERM` settings
04b9b62b 133* `#define RETRO_TAPPING`
134 * tap anyway, even after TAPPING_TERM, if there was no other key interruption between press and release
8ffeaec3 135 * See [Retro Tapping](feature_advanced_keycodes.md#retro-tapping) for details
67cc5ceb 136* `#define TAPPING_TOGGLE 2`
137 * how many taps before triggering the toggle
138* `#define PERMISSIVE_HOLD`
67292656 139 * makes tap and hold keys trigger the hold if another key is pressed before releasing, even if it hasn't hit the `TAPPING_TERM`
8ffeaec3 140 * See [Permissive Hold](feature_advanced_keycodes.md#permissive-hold) for details
7fef5ca2 141* `#define IGNORE_MOD_TAP_INTERRUPT`
67292656
DJ
142 * makes it possible to do rolling combos (zx) with keys that convert to other keys on hold, by enforcing the `TAPPING_TERM` for both keys.
143 * See [Mod tap interrupt](feature_advanced_keycodes.md#ignore-mod-tap-interrupt) for details
7fef5ca2
NS
144* `#define TAPPING_FORCE_HOLD`
145 * makes it possible to use a dual role key as modifier shortly after having been tapped
67292656
DJ
146 * See [Hold after tap](feature_advanced_keycodes.md#tapping-force-hold)
147 * Breaks any Tap Toggle functionality (`TT` or the One Shot Tap Toggle)
67cc5ceb 148* `#define LEADER_TIMEOUT 300`
149 * how long before the leader key times out
28929ad0 150 * If you're having issues finishing the sequence before it times out, you may need to increase the timeout setting. Or you may want to enable the `LEADER_PER_KEY_TIMING` option, which resets the timeout after each key is tapped.
3ec4a00b
AK
151* `#define LEADER_PER_KEY_TIMING`
152 * sets the timer for leader key chords to run on each key press rather than overall
afd5cda4
DJ
153* `#define LEADER_KEY_STRICT_KEY_PROCESSING`
154 * Disables keycode filtering for Mod-Tap and Layer-Tap keycodes. Eg, if you enable this, you would need to specify `MT(MOD_CTL, KC_A)` if you want to use `KC_A`.
67cc5ceb 155* `#define ONESHOT_TIMEOUT 300`
156 * how long before oneshot times out
157* `#define ONESHOT_TAP_TOGGLE 2`
158 * how many taps before oneshot toggle is triggered
39d3d923
S
159* `#define QMK_KEYS_PER_SCAN 4`
160 * Allows sending more than one key per scan. By default, only one key event gets
161 sent via `process_record()` per scan. This has little impact on most typing, but
162 if you're doing a lot of chords, or your scan rate is slow to begin with, you can
163 have some delay in processing key events. Each press and release is a separate
164 event. For a keyboard with 1ms or so scan times, even a very fast typist isn't
165 going to produce the 500 keystrokes a second needed to actually get more than a
166 few ms of delay from this. But if you're doing chording on something with 3-4ms
167 scan times? You probably want this.
a7d05820
DJ
168* `#define COMBO_COUNT 2`
169 * Set this to the number of combos that you're using in the [Combo](feature_combo.md) feature.
170* `#define COMBO_TERM 200`
171 * how long for the Combo keys to be detected. Defaults to `TAPPING_TERM` if not defined.
02d44beb
DJ
172* `#define TAP_CODE_DELAY 100`
173 * Sets the delay between `register_code` and `unregister_code`, if you're having issues with it registering properly (common on VUSB boards). The value is in milliseconds.
48b01446
DJ
174* `#define TAP_HOLD_CAPS_DELAY 200`
175 * Sets the delay for Tap Hold keys (`LT`, `MT`) when using `KC_CAPSLOCK` keycode, as this has some special handling on MacOS. The value is in milliseconds, and defaults to 200ms if not defined.
67cc5ceb 176
07b90db8 177## RGB Light Configuration
67cc5ceb 178
179* `#define RGB_DI_PIN D7`
f077204f 180 * pin the DI on the WS2812 is hooked-up to
67cc5ceb 181* `#define RGBLIGHT_ANIMATIONS`
182 * run RGB animations
f077204f 183* `#define RGBLED_NUM 12`
67cc5ceb 184 * number of LEDs
7e67bd79
TI
185* `#define RGBLIGHT_SPLIT`
186 * Needed if both halves of the board have RGB LEDs wired directly to the RGB output pin on the controllers instead of passing the output of the left half to the input of the right half
f077204f
D
187* `#define RGBLED_SPLIT { 6, 6 }`
188 * number of LEDs connected that are directly wired to `RGB_DI_PIN` on each half of a split keyboard
189 * First value indicates number of LEDs for left half, second value is for the right half
7e67bd79 190 * When RGBLED_SPLIT is defined, RGBLIGHT_SPLIT is implicitly defined.
67cc5ceb 191* `#define RGBLIGHT_HUE_STEP 12`
192 * units to step when in/decreasing hue
193* `#define RGBLIGHT_SAT_STEP 25`
af37bb2f 194 * units to step when in/decreasing saturation
67cc5ceb 195* `#define RGBLIGHT_VAL_STEP 12`
196 * units to step when in/decreasing value (brightness)
197* `#define RGBW_BB_TWI`
af37bb2f 198 * bit-bangs TWI to EZ RGBW LEDs (only required for Ergodox EZ)
67cc5ceb 199
07b90db8 200## Mouse Key Options
67cc5ceb 201
202* `#define MOUSEKEY_INTERVAL 20`
203* `#define MOUSEKEY_DELAY 0`
204* `#define MOUSEKEY_TIME_TO_MAX 60`
205* `#define MOUSEKEY_MAX_SPEED 7`
206* `#define MOUSEKEY_WHEEL_DELAY 0`
207
0fab3bbd
TC
208## Split Keyboard Options
209
210Split Keyboard specific options, make sure you have 'SPLIT_KEYBOARD = yes' in your rules.mk
211
28929ad0
JC
212* `SPLIT_TRANSPORT = custom`
213 * Allows replacing the standard split communication routines with a custom one. ARM based split keyboards must use this at present.
214
c0859ac0
D
215### Setting Handedness
216
217One thing to remember, the side that the USB port is plugged into is always the master half. The side not plugged into USB is the slave.
218
219There are a few different ways to set handedness for split keyboards (listed in order of precedence):
220
2211. Set `SPLIT_HAND_PIN`: Reads a pin to determine handedness. If pin is high, it's the left side, if low, the half is determined to be the right side
2222. Set `EE_HANDS` and flash `eeprom-lefthand.eep`/`eeprom-righthand.eep` to each half
3c257c1c
D
223 * For boards with DFU bootloader you can use `:dfu-split-left`/`:dfu-split-right` to flash these EEPROM files
224 * For boards with Caterina bootloader (like stock Pro Micros), use `:avrdude-split-left`/`:avrdude-split-right`
c0859ac0
D
2253. Set `MASTER_RIGHT`: Half that is plugged into the USB port is determined to be the master and right half (inverse of the default)
2264. Default: The side that is plugged into the USB port is the master half and is assumed to be the left half. The slave side is the right half
227
3c257c1c
D
228#### Defines for handedness
229
28929ad0 230* `#define SPLIT_HAND_PIN B7`
c0859ac0
D
231 * For using high/low pin to determine handedness, low = right hand, high = left hand. Replace `B7` with the pin you are using. This is optional, and if you leave `SPLIT_HAND_PIN` undefined, then you can still use the EE_HANDS method or MASTER_LEFT / MASTER_RIGHT defines like the stock Let's Split uses.
232
233* `#define EE_HANDS` (only works if `SPLIT_HAND_PIN` is not defined)
234 * Reads the handedness value stored in the EEPROM after `eeprom-lefthand.eep`/`eeprom-righthand.eep` has been flashed to their respective halves.
235
236* `#define MASTER_RIGHT`
237 * Master half is defined to be the right half.
238
239### Other Options
3ec4a00b 240
0fab3bbd
TC
241* `#define USE_I2C`
242 * For using I2C instead of Serial (defaults to serial)
243
155e9310
TI
244* `#define SOFT_SERIAL_PIN D0`
245 * When using serial, define this. `D0` or `D1`,`D2`,`D3`,`E6`.
246
c0859ac0
D
247* `#define MATRIX_ROW_PINS_RIGHT { <row pins> }`
248* `#define MATRIX_COL_PINS_RIGHT { <col pins> }`
249 * If you want to specify a different pinout for the right half than the left half, you can define `MATRIX_ROW_PINS_RIGHT`/`MATRIX_COL_PINS_RIGHT`. Currently, the size of `MATRIX_ROW_PINS` must be the same as `MATRIX_ROW_PINS_RIGHT` and likewise for the definition of columns.
250
f077204f
D
251* `#define RGBLED_SPLIT { 6, 6 }`
252 * See [RGB Light Configuration](#rgb-light-configuration)
253
c0859ac0
D
254* `#define SELECT_SOFT_SERIAL_SPEED <speed>` (default speed is 1)
255 * Sets the protocol speed when using serial communication
256 * Speeds:
257 * 0: about 189kbps (Experimental only)
258 * 1: about 137kbps (default)
259 * 2: about 75kbps
260 * 3: about 39kbps
261 * 4: about 26kbps
262 * 5: about 20kbps
263
67cc5ceb 264# The `rules.mk` File
265
266This 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.
267
07b90db8 268## Build Options
67cc5ceb 269
270* `DEFAULT_FOLDER`
271 * Used to specify a default folder when a keyboard has more than one sub-folder.
09759c20 272* `FIRMWARE_FORMAT`
273 * Defines which format (bin, hex) is copied to the root `qmk_firmware` folder after building.
67cc5ceb 274* `SRC`
275 * Used to add files to the compilation/linking list.
276* `LAYOUTS`
277 * A list of [layouts](feature_layouts.md) this keyboard supports.
278
07b90db8 279## AVR MCU Options
67cc5ceb 280* `MCU = atmega32u4`
281* `F_CPU = 16000000`
282* `ARCH = AVR8`
283* `F_USB = $(F_CPU)`
284* `OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT`
62eed0e4
JH
285* `BOOTLOADER = atmel-dfu` with the following options:
286 * `atmel-dfu`
287 * `lufa-dfu`
288 * `qmk-dfu`
289 * `halfkay`
290 * `caterina`
291 * `bootloadHID`
67cc5ceb 292
07b90db8 293## Feature Options
67cc5ceb 294
295Use 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.
296
297* `BOOTMAGIC_ENABLE`
298 * Virtual DIP switch configuration(+1000)
299* `MOUSEKEY_ENABLE`
300 * Mouse keys(+4700)
301* `EXTRAKEY_ENABLE`
302 * Audio control and System control(+450)
303* `CONSOLE_ENABLE`
304 * Console for debug(+400)
305* `COMMAND_ENABLE`
306 * Commands for debug and configuration
a7d05820
DJ
307* `COMBO_ENABLE`
308 * Key combo feature
67cc5ceb 309* `NKRO_ENABLE`
af37bb2f 310 * USB N-Key Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
67cc5ceb 311* `AUDIO_ENABLE`
312 * Enable the audio subsystem.
313* `RGBLIGHT_ENABLE`
314 * Enable keyboard underlight functionality
3ec4a00b
AK
315* `LEADER_ENABLE`
316 * Enable leader key chording
67cc5ceb 317* `MIDI_ENABLE`
318 * MIDI controls
319* `UNICODE_ENABLE`
320 * Unicode
321* `BLUETOOTH_ENABLE`
914d42ac 322 * Legacy option to Enable Bluetooth with the Adafruit EZ-Key HID. See BLUETOOTH
323* `BLUETOOTH`
324 * Current options are AdafruitEzKey, AdafruitBLE, RN42
0fab3bbd
TC
325* `SPLIT_KEYBOARD`
326 * Enables split keyboard support (dual MCU like the let's split and bakingpy's boards) and includes all necessary files located at quantum/split_common
28929ad0
JC
327* `CUSTOM_MATRIX`
328 * Allows replacing the standard matrix scanning routine with a custom one.
c7c4937e
JC
329* `DEBOUNCE_TYPE`
330 * Allows replacing the standard key debouncing routine with an alternative or custom one.
73a3399d 331* `WAIT_FOR_USB`
332 * Forces the keyboard to wait for a USB connection to be established before it starts up
333* `NO_USB_STARTUP_CHECK`
334 * Disables usb suspend check after keyboard startup. Usually the keyboard waits for the host to wake it up before any tasks are performed. This is useful for split keyboards as one half will not get a wakeup call but must send commands to the master.
7e655a20
DJ
335* `LINK_TIME_OPTIMIZATION_ENABLE`
336 = Enables Link Time Optimization (`LTO`) when compiling the keyboard. This makes the process take longer, but can significantly reduce the compiled size (and since the firmware is small, the added time is not noticable). However, this will automatically disable the old Macros and Functions features automatically, as these break when `LTO` is enabled. It does this by automatically defining `NO_ACTION_MACRO` and `NO_ACTION_FUNCTION`
39bd760f
JLW
337
338## USB Endpoint Limitations
339
340In order to provide services over USB, QMK has to use USB endpoints.
341These are a finite resource: each microcontroller has only a certain number.
342This limits what features can be enabled together.
343If the available endpoints are exceeded, a build error is thrown.
344
345The following features can require separate endpoints:
346
347* `MOUSEKEY_ENABLE`
348* `EXTRAKEY_ENABLE`
349* `CONSOLE_ENABLE`
350* `NKRO_ENABLE`
351* `MIDI_ENABLE`
352* `RAW_ENABLE`
353* `VIRTSER_ENABLE`
354
355In order to improve utilisation of the endpoints, the HID features can be combined to use a single endpoint.
356By default, `MOUSEKEY`, `EXTRAKEY`, and `NKRO` are combined into a single endpoint.
357
358The base keyboard functionality can also be combined into the endpoint,
359by setting `KEYBOARD_SHARED_EP = yes`.
360This frees up one more endpoint,
361but it can prevent the keyboard working in some BIOSes,
362as they do not implement Boot Keyboard protocol switching.
363
364Combining the mouse also breaks Boot Mouse compatibility.
365The mouse can be uncombined by setting `MOUSE_SHARED_EP = no` if this functionality is required.