mirror of
https://github.com/zmkfirmware/zmk.git
synced 2026-03-20 04:55:20 -05:00
docs: Fix incorrect kconfig default values fix(Kconfig): Added a name to EC11's trigger mode choice, allowing it to be set in device Kconfig.defconfig refactor(Kconfig): Moved designer defaults out into new files
32 lines
649 B
Plaintext
32 lines
649 B
Plaintext
# Copyright (c) 2022 The ZMK Contributors
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
menuconfig ZMK_SPLIT
|
|
bool "Split keyboard support"
|
|
|
|
if ZMK_SPLIT
|
|
|
|
config ZMK_SPLIT_ROLE_CENTRAL
|
|
bool "Split central device"
|
|
|
|
choice ZMK_SPLIT_TRANSPORT
|
|
prompt "Split transport"
|
|
|
|
config ZMK_SPLIT_BLE
|
|
bool "BLE"
|
|
depends on ZMK_BLE
|
|
select BT_USER_PHY_UPDATE
|
|
select BT_AUTO_PHY_UPDATE
|
|
|
|
endchoice
|
|
|
|
config ZMK_SPLIT_PERIPHERAL_HID_INDICATORS
|
|
bool "Peripheral HID Indicators"
|
|
depends on ZMK_HID_INDICATORS
|
|
help
|
|
Enable propagating the HID (LED) Indicator state to the split peripheral(s).
|
|
|
|
endif # ZMK_SPLIT
|
|
|
|
rsource "bluetooth/Kconfig"
|