summaryrefslogtreecommitdiff
path: root/docs/config_options.md
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2024-06-02 12:42:24 +1000
committerGitHub <noreply@github.com>2024-06-02 12:42:24 +1000
commit78a0adfbb4d2c4e12f93f2a62ded0020d406243e (patch)
treee6e123b36569559233025add654580e090dc0154 /docs/config_options.md
parentfa6d23235bf429446250cd5212e209d5fbfdbac2 (diff)
[docs] Organize driver & feature docs into subfolders (#23848)
Co-authored-by: Nick Brassel <nick@tzarc.org>
Diffstat (limited to 'docs/config_options.md')
-rw-r--r--docs/config_options.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/config_options.md b/docs/config_options.md
index 236649a0ea..a1ca8c8d50 100644
--- a/docs/config_options.md
+++ b/docs/config_options.md
@@ -207,7 +207,7 @@ If you define these options you will enable the associated feature, which may in
207* `#define TAP_HOLD_CAPS_DELAY 80` 207* `#define TAP_HOLD_CAPS_DELAY 80`
208 * Sets the delay for Tap Hold keys (`LT`, `MT`) when using `KC_CAPS_LOCK` keycode, as this has some special handling on MacOS. The value is in milliseconds, and defaults to 80 ms if not defined. For macOS, you may want to set this to 200 or higher. 208 * Sets the delay for Tap Hold keys (`LT`, `MT`) when using `KC_CAPS_LOCK` keycode, as this has some special handling on MacOS. The value is in milliseconds, and defaults to 80 ms if not defined. For macOS, you may want to set this to 200 or higher.
209* `#define KEY_OVERRIDE_REPEAT_DELAY 500` 209* `#define KEY_OVERRIDE_REPEAT_DELAY 500`
210 * Sets the key repeat interval for [key overrides](feature_key_overrides). 210 * Sets the key repeat interval for [key overrides](features/key_overrides).
211* `#define LEGACY_MAGIC_HANDLING` 211* `#define LEGACY_MAGIC_HANDLING`
212 * Enables magic configuration handling for advanced keycodes (such as Mod Tap and Layer Tap) 212 * Enables magic configuration handling for advanced keycodes (such as Mod Tap and Layer Tap)
213 213
@@ -217,14 +217,14 @@ If you define these options you will enable the associated feature, which may in
217* `#define WS2812_DI_PIN D7` 217* `#define WS2812_DI_PIN D7`
218 * pin the DI on the WS2812 is hooked-up to 218 * pin the DI on the WS2812 is hooked-up to
219* `#define RGBLIGHT_LAYERS` 219* `#define RGBLIGHT_LAYERS`
220 * Lets you define [lighting layers](feature_rgblight#lighting-layers) that can be toggled on or off. Great for showing the current keyboard layer or caps lock state. 220 * Lets you define [lighting layers](features/rgblight#lighting-layers) that can be toggled on or off. Great for showing the current keyboard layer or caps lock state.
221* `#define RGBLIGHT_MAX_LAYERS` 221* `#define RGBLIGHT_MAX_LAYERS`
222 * Defaults to 8. Can be expanded up to 32 if more [lighting layers](feature_rgblight#lighting-layers) are needed. 222 * Defaults to 8. Can be expanded up to 32 if more [lighting layers](features/rgblight#lighting-layers) are needed.
223 * Note: Increasing the maximum will increase the firmware size and slow sync on split keyboards. 223 * Note: Increasing the maximum will increase the firmware size and slow sync on split keyboards.
224* `#define RGBLIGHT_LAYER_BLINK` 224* `#define RGBLIGHT_LAYER_BLINK`
225 * Adds ability to [blink](feature_rgblight#lighting-layer-blink) a lighting layer for a specified number of milliseconds (e.g. to acknowledge an action). 225 * Adds ability to [blink](features/rgblight#lighting-layer-blink) a lighting layer for a specified number of milliseconds (e.g. to acknowledge an action).
226* `#define RGBLIGHT_LAYERS_OVERRIDE_RGB_OFF` 226* `#define RGBLIGHT_LAYERS_OVERRIDE_RGB_OFF`
227 * If defined, then [lighting layers](feature_rgblight#overriding-rgb-lighting-onoff-status) will be shown even if RGB Light is off. 227 * If defined, then [lighting layers](features/rgblight#overriding-rgb-lighting-onoff-status) will be shown even if RGB Light is off.
228* `#define RGBLIGHT_LED_COUNT 12` 228* `#define RGBLIGHT_LED_COUNT 12`
229 * number of LEDs 229 * number of LEDs
230* `#define RGBLIGHT_SPLIT` 230* `#define RGBLIGHT_SPLIT`
@@ -358,7 +358,7 @@ There are a few different ways to set handedness for split keyboards (listed in
358 358
359* `#define SPLIT_TRANSACTION_IDS_KB .....` 359* `#define SPLIT_TRANSACTION_IDS_KB .....`
360* `#define SPLIT_TRANSACTION_IDS_USER .....` 360* `#define SPLIT_TRANSACTION_IDS_USER .....`
361 * Allows for custom data sync with the slave when using the QMK-provided split transport. See [custom data sync between sides](feature_split_keyboard#custom-data-sync) for more information. 361 * Allows for custom data sync with the slave when using the QMK-provided split transport. See [custom data sync between sides](features/split_keyboard#custom-data-sync) for more information.
362 362
363# The `rules.mk` File 363# The `rules.mk` File
364 364