mirror of https://github.com/zmkfirmware/zmk.git
fix(split): Enable wired split by default if DTS is set (#3010)
Remove the previous condition on ZMK_SPLIT_WIRED that only enabled it if !ZMK_BLE. We'll defer to the `depends on` to ensure the DTS exists to use wired split to make that decision on enabling the feature.
This commit is contained in:
parent
1bac680c4f
commit
1530ae36c2
|
|
@ -18,7 +18,7 @@ config ZMK_SPLIT_BLE
|
|||
|
||||
config ZMK_SPLIT_WIRED
|
||||
bool "Wired Split"
|
||||
default y if !ZMK_SPLIT_BLE
|
||||
default y
|
||||
depends on DT_HAS_ZMK_WIRED_SPLIT_ENABLED
|
||||
select SERIAL
|
||||
select RING_BUFFER
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ Following wired [split keyboard](../features/split-keyboards.md) settings are de
|
|||
|
||||
| Config | Type | Description | Default |
|
||||
| -------------------------------------------- | ---- | ----------------------------------------------------------------- | ------------------------------------------------------------- |
|
||||
| `CONFIG_ZMK_SPLIT_WIRED` | bool | Use wired connection to communicate between split keyboard halves | y (if no BLE split and devicetree is set appropriately) |
|
||||
| `CONFIG_ZMK_SPLIT_WIRED` | bool | Use wired connection to communicate between split keyboard halves | y (if devicetree is set appropriately) |
|
||||
| `CONFIG_ZMK_SPLIT_WIRED_UART_MODE_ASYNC` | bool | Async (DMA) mode | y if the driver supports it (excluding nRF52 with known bugs) |
|
||||
| `CONFIG_ZMK_SPLIT_WIRED_UART_MODE_INTERRUPT` | bool | Interrupt mode | y if the hardware supports it |
|
||||
| `CONFIG_ZMK_SPLIT_WIRED_UART_MODE_POLLING` | bool | Polling mode | y if neither other mode is supported |
|
||||
|
|
|
|||
Loading…
Reference in New Issue