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 | |
| parent | 93b004c943a4b13bd640fc83000e910b72cb4640 (diff) | |
| download | qmk_firmware-c0859ac096f1e4251351bb0a5a04b3ae4a9451f4.tar.gz qmk_firmware-c0859ac096f1e4251351bb0a5a04b3ae4a9451f4.zip | |
Update split keyboard docs (#4735)
* Remove unused I2C_MASTER_RIGHT setting
* Update documentation about split keyboard options
Diffstat (limited to 'quantum/split_common')
| -rw-r--r-- | quantum/split_common/serial.c | 2 | ||||
| -rw-r--r-- | quantum/split_common/split_util.c | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/quantum/split_common/serial.c b/quantum/split_common/serial.c index 4df8d103b..1315377a3 100644 --- a/quantum/split_common/serial.c +++ b/quantum/split_common/serial.c | |||
| @@ -90,7 +90,7 @@ | |||
| 90 | 90 | ||
| 91 | #ifndef SELECT_SOFT_SERIAL_SPEED | 91 | #ifndef SELECT_SOFT_SERIAL_SPEED |
| 92 | #define SELECT_SOFT_SERIAL_SPEED 1 | 92 | #define SELECT_SOFT_SERIAL_SPEED 1 |
| 93 | // 0: about 189kbps (Experiment only) | 93 | // 0: about 189kbps (Experimental only) |
| 94 | // 1: about 137kbps (default) | 94 | // 1: about 137kbps (default) |
| 95 | // 2: about 75kbps | 95 | // 2: about 75kbps |
| 96 | // 3: about 39kbps | 96 | // 3: about 39kbps |
diff --git a/quantum/split_common/split_util.c b/quantum/split_common/split_util.c index e4475c535..da04c8d3f 100644 --- a/quantum/split_common/split_util.c +++ b/quantum/split_common/split_util.c | |||
| @@ -36,8 +36,7 @@ static void setup_handedness(void) { | |||
| 36 | #ifdef EE_HANDS | 36 | #ifdef EE_HANDS |
| 37 | isLeftHand = eeprom_read_byte(EECONFIG_HANDEDNESS); | 37 | isLeftHand = eeprom_read_byte(EECONFIG_HANDEDNESS); |
| 38 | #else | 38 | #else |
| 39 | // I2C_MASTER_RIGHT is deprecated, use MASTER_RIGHT instead, since this works for both serial and i2c | 39 | #ifdef(MASTER_RIGHT) |
| 40 | #if defined(I2C_MASTER_RIGHT) || defined(MASTER_RIGHT) | ||
| 41 | isLeftHand = !has_usb(); | 40 | isLeftHand = !has_usb(); |
| 42 | #else | 41 | #else |
| 43 | isLeftHand = has_usb(); | 42 | isLeftHand = has_usb(); |
