aboutsummaryrefslogtreecommitdiff
path: root/docs/config_options.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/config_options.md')
-rw-r--r--docs/config_options.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/config_options.md b/docs/config_options.md
index 94233cadc..d728a49c3 100644
--- a/docs/config_options.md
+++ b/docs/config_options.md
@@ -179,6 +179,16 @@ If you define these options you will enable the associated feature, which may in
179* `#define MOUSEKEY_MAX_SPEED 7` 179* `#define MOUSEKEY_MAX_SPEED 7`
180* `#define MOUSEKEY_WHEEL_DELAY 0` 180* `#define MOUSEKEY_WHEEL_DELAY 0`
181 181
182## Split Keyboard Options
183
184Split Keyboard specific options, make sure you have 'SPLIT_KEYBOARD = yes' in your rules.mk
185
186* `#define SPLIT_HAND_PIN B7`
187 * 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 you can still use the EEHANDS method or MASTER_LEFT / MASTER_RIGHT defines like the stock Let's Split uses.
188
189* `#define USE_I2C`
190 * For using I2C instead of Serial (defaults to serial)
191
182# The `rules.mk` File 192# The `rules.mk` File
183 193
184This 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. 194This 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.
@@ -232,3 +242,5 @@ Use these to enable or disable building certain features. The more you have enab
232 * Unicode 242 * Unicode
233* `BLUETOOTH_ENABLE` 243* `BLUETOOTH_ENABLE`
234 * Enable Bluetooth with the Adafruit EZ-Key HID 244 * Enable Bluetooth with the Adafruit EZ-Key HID
245* `SPLIT_KEYBOARD`
246 * 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