diff options
author | Garrett Singer <gesinger@gmail.com> | 2019-08-04 00:26:02 -0400 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-08-03 21:26:02 -0700 |
commit | f644db042c488a19c2256c9f3870b5bd331cc98c (patch) | |
tree | d2c590fb7f6dc2dd92b3a24d39c842bce20f04d7 /docs/config_options.md | |
parent | 465acd4d09fbf429ebd5894d13ae43a55c6777ee (diff) | |
download | qmk_firmware-f644db042c488a19c2256c9f3870b5bd331cc98c.tar.gz |
[Split] Add config option for DIRECT_PINS_RIGHT (#6479)
Adds support for different direct pin mappings on the halves of a split keyboard.
Diffstat (limited to 'docs/config_options.md')
-rw-r--r-- | docs/config_options.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/config_options.md b/docs/config_options.md index 01c0e3ee8..3be294db8 100644 --- a/docs/config_options.md +++ b/docs/config_options.md @@ -248,6 +248,9 @@ There are a few different ways to set handedness for split keyboards (listed in * `#define MATRIX_COL_PINS_RIGHT { <col pins> }` * 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. +* `#define DIRECT_PINS_RIGHT { { F1, F0, B0, C7 }, { F4, F5, F6, F7 } }` + * If you want to specify a different direct pinout for the right half than the left half, you can define `DIRECT_PINS_RIGHT`. Currently, the size of `DIRECT_PINS` must be the same as `DIRECT_PINS_RIGHT`. + * `#define RGBLED_SPLIT { 6, 6 }` * See [RGB Light Configuration](#rgb-light-configuration) |