Browse Source

Merge pull request #222 from petejohanson/bluetooth/fix-max-paired-kconfig

Fix max paired/connected settings for all configs.
xmkb
Pete Johanson 4 years ago committed by GitHub
parent
commit
d50c371b30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 16
      app/Kconfig

16
app/Kconfig

@ -132,16 +132,30 @@ endif @@ -132,16 +132,30 @@ endif
endif
if ZMK_BLE && (!ZMK_SPLIT_BLE || ZMK_SPLIT_BLE_ROLE_CENTRAL)
if ZMK_BLE
if ZMK_SPLIT_BLE && ZMK_SPLIT_BLE_ROLE_CENTRAL
config BT_MAX_CONN
default 6
config BT_MAX_PAIRED
default 6
endif
if !ZMK_SPLIT_BLE
config BT_MAX_CONN
default 5
config BT_MAX_PAIRED
default 5
endif
endif
endmenu
config ZMK_KSCAN_MOCK_DRIVER

Loading…
Cancel
Save