~ruther/qmk_firmware

a1ecbaa45daa803eb5e87a0734faca30898a883d — QMK Bot 2 years ago 0250de1 + 87c4152
Merge remote-tracking branch 'origin/master' into develop
1 files changed, 5 insertions(+), 4 deletions(-)

M docs/feature_split_keyboard.md
M docs/feature_split_keyboard.md => docs/feature_split_keyboard.md +5 -4
@@ 158,21 158,22 @@ This setting is not changed when re-initializing the EEPROM using the `EE_CLR` k

You can find the `EEPROM` files in the QMK firmware repo, [here](https://github.com/qmk/qmk_firmware/tree/master/quantum/split_common).


#### Handedness by `#define`

You can set the handedness at compile time.  This is done by adding the following to your `config.h` file:
You can use this option when USB cable is always connected to just one side of the split keyboard.

If the USB cable is always connected to the right side, add the following to your `config.h` file and flash both sides with this option:
```c
#define MASTER_RIGHT
```

or 

If the USB cable is always connected to the left side, add the following to your `config.h` file and flash both sides with this option:
```c
#define MASTER_LEFT
```

If neither are defined, the handedness defaults to `MASTER_LEFT`.
?> If neither options are defined, the handedness defaults to `MASTER_LEFT`.


### Communication Options