diff options
author | Danny <nooges@users.noreply.github.com> | 2018-12-28 16:02:53 -0500 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-12-28 13:02:53 -0800 |
commit | c0859ac096f1e4251351bb0a5a04b3ae4a9451f4 (patch) | |
tree | f206fc2a87fc26b8fbe0bd523713aab9f9714ff1 /quantum/split_common/split_util.c | |
parent | 93b004c943a4b13bd640fc83000e910b72cb4640 (diff) |
Update split keyboard docs (#4735)
* Remove unused I2C_MASTER_RIGHT setting
* Update documentation about split keyboard options
Diffstat (limited to 'quantum/split_common/split_util.c')
-rw-r--r-- | quantum/split_common/split_util.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/quantum/split_common/split_util.c b/quantum/split_common/split_util.c index e4475c5356..da04c8d3ff 100644 --- a/quantum/split_common/split_util.c +++ b/quantum/split_common/split_util.c @@ -36,8 +36,7 @@ static void setup_handedness(void) { #ifdef EE_HANDS isLeftHand = eeprom_read_byte(EECONFIG_HANDEDNESS); #else - // I2C_MASTER_RIGHT is deprecated, use MASTER_RIGHT instead, since this works for both serial and i2c - #if defined(I2C_MASTER_RIGHT) || defined(MASTER_RIGHT) + #ifdef(MASTER_RIGHT) isLeftHand = !has_usb(); #else isLeftHand = has_usb(); |