diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-06-29 00:37:11 -0400 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-07-17 22:43:40 -0400 |
commit | 3796f76c56d42ca9b4fd36edae7f6bf6656009b9 (patch) | |
tree | 367eaa4b9c7b80c1e0d8a5f196668c2c911a4137 /app/Kconfig | |
parent | f6110a632d0ddbc0a9ebd7bfd4997366f95facfd (diff) |
Initial exploration of split BLE service.
* Service for split peripheral to report
position state to split central.
* Updated advertising info.
* Behavior for split BT until we have a proper
event system.
Diffstat (limited to 'app/Kconfig')
-rw-r--r-- | app/Kconfig | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/Kconfig b/app/Kconfig index e6dc3bd..10d98e6 100644 --- a/app/Kconfig +++ b/app/Kconfig @@ -72,6 +72,25 @@ endif endmenu + +menu "Split Support" + +config ZMK_SPLIT + bool "Split keyboard support" + default n + +if ZMK_SPLIT + +config ZMK_SPLIT_BLE + bool "Split keyboard support via BLE transport" + depends on ZMK_BLE + default y + +endif + +endmenu + + config ZMK_KSCAN_MOCK_DRIVER bool "Enable mock kscan driver to simulate key presses" default n |