Refactor and simplify the bluetooth buffer configurations to improve the easy of configurations and eliminate invalid ones. By moving configurations out of host and controller specific configurations and into a common one it becomes easier to configure the host and controller separately as the same configurations can be used as would be for a combined build. All HCI configurations are now given exluding the matching HCI header, which eases the configuration as the application don't have to know the different header sizes. The BT_RX_BUF_LEN is split into ACL and Event, as well as the suprising use of Command size. BT_L2CAP_RX_MTU is removed as the stack does not support reassembling of HCI ACL data to larger L2CAP PDUs. The application will have to set ACL RX size and account for the L2CAP PDU header itself. BT_EATT_RX_MTU was removed as it is only used for setting a different default value for another option which leads to the stuck kconfig symbol problem. The configurations can be updated according to the table below: ** New configuration | ** Old configuration All configurations BT_BUF_ACL_RX_SIZE | BT_L2CAP_RX_MTU + 4 BT_BUF_ACL_RX_SIZE | BT_RX_BUF_LEN - 4 BT_BUF_EVT_RX_SIZE | BT_RX_BUF_LEN - 2 BT_BUF_CMD_TX_SIZE | BT_RX_BUF_LEN - 3 BT_BUF_CMD_TX_COUNT | BT_HCI_CMD_COUNT BT_BUF_EVT_RX_COUNT | BT_RX_BUF_COUNT BT_BUF_ACL_RX_COUNT | BT_RX_BUF_COUNT BT_BUF_ACL_RX_COUNT | BT_ACL_RX_COUNT BT_BUF_EVT_DISCARDABLE_SIZE | BT_DISCARDABLE_BUF_SIZE - 2 BT_BUF_EVT_DISCARDABLE_COUNT | BT_DISCARDABLE_BUF_COUNT Controller-build BT_BUF_ACL_TX_SIZE | BT_CTLR_TX_BUFFERS_SIZE BT_BUF_ACL_TX_COUNT | BT_CTLR_TX_BUFFER HCI-bridge BT_BUF_ACL_TX_SIZE | BT_HCI_ACL_DATA_SIZE BT_BUF_ACL_TX_COUNT | 6 Fixed invalid configurations setting either BT_L2CAP_RX_MTU or BT_CTLR_DATA_LENGTH_MAX larger than BT_RX_BUF_LEN could lead to buffer overruns. Fix advertising report max data length calculation. This always used the BT_DISCARDABLE_BUF_SIZE macro but this feature can be turned off and advertising reports will be allocated from the RX buffer in that case. Also controller-build does not have this buffer (in hci_raw.c). Also the wrong HCI header was used in the calculation, HCI event header should have been used instead of HCI ACL header. Signed-off-by: Joakim Andersson <joakim.andersson@nordicsemi.no>
632 lines
17 KiB
Plaintext
632 lines
17 KiB
Plaintext
# Bluetooth Controller configuration options
|
|
|
|
# Copyright (c) 2016-2017 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
comment "BLE Controller support"
|
|
|
|
# The following symbols are enabled depending if the controller actually
|
|
# supports the respective features.
|
|
|
|
config BT_CTLR_LE_ENC_SUPPORT
|
|
bool
|
|
|
|
config BT_CTLR_CONN_PARAM_REQ_SUPPORT
|
|
bool
|
|
|
|
config BT_CTLR_EXT_REJ_IND_SUPPORT
|
|
bool
|
|
|
|
config BT_CTLR_SLAVE_FEAT_REQ_SUPPORT
|
|
bool
|
|
|
|
config BT_CTLR_DATA_LEN_UPDATE_SUPPORT
|
|
bool
|
|
|
|
config BT_CTLR_PRIVACY_SUPPORT
|
|
bool
|
|
|
|
config BT_CTLR_EXT_SCAN_FP_SUPPORT
|
|
bool
|
|
|
|
config BT_CTLR_PHY_UPDATE_SUPPORT
|
|
bool
|
|
|
|
config BT_CTLR_PHY_2M_SUPPORT
|
|
bool
|
|
|
|
config BT_CTLR_PHY_CODED_SUPPORT
|
|
bool
|
|
|
|
config BT_CTLR_ADV_EXT_SUPPORT
|
|
bool
|
|
|
|
config BT_CTLR_ADV_PERIODIC_SUPPORT
|
|
depends on BT_CTLR_ADV_EXT_SUPPORT
|
|
bool
|
|
|
|
config BT_CTLR_SYNC_PERIODIC_SUPPORT
|
|
depends on BT_CTLR_ADV_EXT_SUPPORT
|
|
bool
|
|
|
|
config BT_CTLR_ADV_ISO_SUPPORT
|
|
depends on BT_CTLR_ADV_PERIODIC_SUPPORT
|
|
bool
|
|
|
|
config BT_CTLR_SYNC_ISO_SUPPORT
|
|
depends on BT_CTLR_SYNC_PERIODIC_SUPPORT
|
|
bool
|
|
|
|
config BT_CTLR_CENTRAL_ISO_SUPPORT
|
|
bool
|
|
|
|
config BT_CTLR_PERIPHERAL_ISO_SUPPORT
|
|
bool
|
|
|
|
config BT_CTLR_CHAN_SEL_2_SUPPORT
|
|
bool
|
|
|
|
config BT_CTLR_MIN_USED_CHAN_SUPPORT
|
|
bool
|
|
|
|
config BT_CTLR_DTM_HCI_SUPPORT
|
|
bool
|
|
|
|
config BT_CTLR_SMI_SUPPORT
|
|
bool
|
|
|
|
config BT_CTLR_CONN_RSSI_SUPPORT
|
|
bool
|
|
|
|
config BT_CTLR_ECDH_SUPPORT
|
|
bool
|
|
|
|
config BT_CTLR
|
|
bool "Bluetooth Controller"
|
|
help
|
|
Enables support for SoC native controller implementations.
|
|
|
|
if BT_CTLR
|
|
|
|
choice BT_LL_CHOICE
|
|
prompt "Bluetooth Link Layer Selection"
|
|
help
|
|
Select the Bluetooth Link Layer to compile.
|
|
|
|
config BT_LL_SW_SPLIT
|
|
bool "Software-based BLE Link Layer"
|
|
select BT_RECV_IS_RX_THREAD
|
|
select ENTROPY_GENERATOR
|
|
select NRF_HW_TIMER0_RESERVED
|
|
select NRF_HW_RTC0_RESERVED
|
|
help
|
|
Use Zephyr software BLE Link Layer ULL LLL split implementation.
|
|
|
|
endchoice
|
|
|
|
comment "BLE Controller configuration"
|
|
|
|
config BT_CTLR_CRYPTO
|
|
bool "Enable crypto functions in Controller"
|
|
default y
|
|
select ENTROPY_GENERATOR
|
|
help
|
|
Use random number generation and AES encryption support functions
|
|
provided by the controller.
|
|
|
|
config BT_CTLR_HCI_VS_BUILD_INFO
|
|
string "Zephyr HCI VS Build Info string"
|
|
default ""
|
|
depends on BT_HCI_VS_EXT
|
|
help
|
|
User-defined string that will be returned by the Zephyr VS Read Build
|
|
Information command after the Zephyr version and build time. When
|
|
setting this to a value different from an empty string, a space
|
|
character is required at the beginning to separate it from the
|
|
already included information.
|
|
|
|
config BT_CTLR_HCI_ADV_HANDLE_MAPPING
|
|
bool "Enable advertising set handle mapping between HCI and LL"
|
|
depends on BT_CTLR_ADV_EXT
|
|
default y if BT_HCI_RAW
|
|
help
|
|
Enable mapping of advertising set handles between HCI and LL when
|
|
using external host since it can use arbitrary numbers as set handles
|
|
(as defined by Core specification) as opposed to LL which always uses
|
|
zero-based numbering. When using with Zephyr host this option can be
|
|
disabled to remove extra mapping logic.
|
|
|
|
config BT_CTLR_DUP_FILTER_LEN
|
|
int "Number of addresses in the scan duplicate filter"
|
|
depends on BT_OBSERVER
|
|
default 16
|
|
help
|
|
Set the number of unique BLE addresses that can be filtered as
|
|
duplicates while scanning.
|
|
|
|
config BT_CTLR_MESH_SCAN_FILTERS
|
|
int "Number of Mesh scan filters"
|
|
depends on BT_HCI_MESH_EXT
|
|
default 1
|
|
range 1 15
|
|
help
|
|
Set the number of unique Mesh Scan Filters available as part of
|
|
the Intel Mesh Vendor Specific Extensions.
|
|
|
|
config BT_CTLR_MESH_SF_PATTERNS
|
|
int "Number of Mesh scan filter patterns"
|
|
depends on BT_HCI_MESH_EXT
|
|
default 15
|
|
range 1 15
|
|
help
|
|
Set the number of unique Mesh Scan Filter patterns available per
|
|
Scan Filter as part of the Intel Mesh Vendor Specific Extensions.
|
|
|
|
config BT_CTLR_RX_BUFFERS
|
|
int "Number of Rx buffers"
|
|
default 6 if BT_HCI_RAW
|
|
default 1
|
|
range 1 18
|
|
help
|
|
Set the number of Rx PDUs to be buffered in the controller. In a 7.5ms
|
|
connection interval and 2M PHY, maximum 18 packets with L2CAP payload
|
|
size of 1 byte can be received.
|
|
|
|
config BT_CTLR_ISO_TX_BUFFERS
|
|
int "Number of Isochronous Tx buffers"
|
|
default 3
|
|
range 1 19
|
|
depends on BT_CTLR_ADV_ISO || BT_CTLR_CONN_ISO
|
|
help
|
|
Set the number of Isochronous Tx PDUs to be queued for transmission
|
|
in the controller.
|
|
|
|
config BT_CTLR_ISO_TX_BUFFER_SIZE
|
|
int "Isochronous Tx buffer size"
|
|
range 1 4095
|
|
default 27
|
|
help
|
|
Size of the Isochronous Tx buffers and the value returned in HCI LE
|
|
Read Buffer Size V2 command response.
|
|
|
|
choice BT_CTLR_TX_PWR
|
|
prompt "Tx Power"
|
|
default BT_CTLR_TX_PWR_0
|
|
help
|
|
Select the supported BLE Radio transmit power level in dBm.
|
|
|
|
config BT_CTLR_TX_PWR_PLUS_8
|
|
bool "+8 dBm"
|
|
depends on HAS_HW_NRF_RADIO_TX_PWR_HIGH
|
|
|
|
config BT_CTLR_TX_PWR_PLUS_7
|
|
bool "+7 dBm"
|
|
depends on HAS_HW_NRF_RADIO_TX_PWR_HIGH
|
|
|
|
config BT_CTLR_TX_PWR_PLUS_6
|
|
bool "+6 dBm"
|
|
depends on HAS_HW_NRF_RADIO_TX_PWR_HIGH
|
|
|
|
config BT_CTLR_TX_PWR_PLUS_5
|
|
bool "+5 dBm"
|
|
depends on HAS_HW_NRF_RADIO_TX_PWR_HIGH
|
|
|
|
config BT_CTLR_TX_PWR_PLUS_4
|
|
bool "+4 dBm"
|
|
depends on SOC_SERIES_NRF51X || SOC_COMPATIBLE_NRF52X
|
|
|
|
config BT_CTLR_TX_PWR_PLUS_3
|
|
bool "+3 dBm"
|
|
depends on SOC_COMPATIBLE_NRF52X
|
|
|
|
config BT_CTLR_TX_PWR_PLUS_2
|
|
bool "+2 dBm"
|
|
depends on HAS_HW_NRF_RADIO_TX_PWR_HIGH
|
|
|
|
config BT_CTLR_TX_PWR_0
|
|
bool "0 dBm"
|
|
|
|
config BT_CTLR_TX_PWR_MINUS_4
|
|
bool "-4 dBm"
|
|
|
|
config BT_CTLR_TX_PWR_MINUS_8
|
|
bool "-8 dBm"
|
|
|
|
config BT_CTLR_TX_PWR_MINUS_12
|
|
bool "-12 dBm"
|
|
|
|
config BT_CTLR_TX_PWR_MINUS_16
|
|
bool "-16 dBm"
|
|
|
|
config BT_CTLR_TX_PWR_MINUS_20
|
|
bool "-20 dBm"
|
|
|
|
config BT_CTLR_TX_PWR_MINUS_30
|
|
bool "-30 dBm"
|
|
depends on SOC_SERIES_NRF51X
|
|
|
|
config BT_CTLR_TX_PWR_MINUS_40
|
|
bool "-40 dBm"
|
|
depends on SOC_COMPATIBLE_NRF52X
|
|
|
|
endchoice
|
|
|
|
config BT_CTLR_TX_PWR_DYNAMIC_CONTROL
|
|
bool "Tx Power Dynamic Control"
|
|
depends on BT_HCI_VS_EXT
|
|
help
|
|
Enable dynamic control of Tx power per role/connection.
|
|
Provides HCI VS commands to set and get the current Tx
|
|
power on an individual role/connection basis.
|
|
|
|
comment "BLE Controller features"
|
|
|
|
if BT_CONN
|
|
|
|
config BT_CTLR_LE_ENC
|
|
bool "LE Encryption"
|
|
depends on BT_CTLR_LE_ENC_SUPPORT
|
|
default y
|
|
help
|
|
Enable support for Bluetooth v4.0 LE Encryption feature in the
|
|
Controller.
|
|
|
|
config BT_CTLR_ECDH
|
|
bool "Elliptic Curve Diffie-Hellman (ECDH)"
|
|
depends on BT_CTLR_ECDH_SUPPORT
|
|
default y
|
|
help
|
|
Enable support for Bluetoooth v4.2 Elliptic Curve Diffie-Hellman
|
|
feature in the controller.
|
|
|
|
config BT_CTLR_CONN_PARAM_REQ
|
|
bool "Connection Parameter Request"
|
|
depends on BT_CTLR_CONN_PARAM_REQ_SUPPORT
|
|
select BT_CTLR_EXT_REJ_IND
|
|
default y
|
|
help
|
|
Enable support for Bluetooth v4.1 Connection Parameter Request feature
|
|
in the Controller.
|
|
|
|
config BT_CTLR_EXT_REJ_IND
|
|
bool "Extended Reject Indication"
|
|
depends on BT_CTLR_EXT_REJ_IND_SUPPORT
|
|
default y
|
|
help
|
|
Enable support for Bluetooth v4.1 Extended Reject Indication feature
|
|
in the Controller.
|
|
|
|
config BT_CTLR_SLAVE_FEAT_REQ
|
|
bool "Slave-initiated Features Exchange"
|
|
depends on BT_CTLR_SLAVE_FEAT_REQ_SUPPORT
|
|
default y
|
|
help
|
|
Enable support for Bluetooth v4.1 Slave-initiated Features Exchange
|
|
feature in the Controller.
|
|
|
|
config BT_CTLR_LE_PING
|
|
bool "LE Ping"
|
|
depends on BT_CTLR_LE_ENC
|
|
default y
|
|
help
|
|
Enable support for Bluetooth v4.1 LE Ping feature in the Controller.
|
|
|
|
config BT_CTLR_DATA_LENGTH
|
|
# Hidden option to enable support for Bluetooth v4.2 LE Data Length
|
|
# Update procedure in the Controller.
|
|
bool
|
|
depends on BT_DATA_LEN_UPDATE && BT_CTLR_DATA_LEN_UPDATE_SUPPORT
|
|
default y
|
|
|
|
config BT_CTLR_DATA_LENGTH_MAX
|
|
int "Maximum data length supported"
|
|
depends on BT_CTLR_DATA_LENGTH
|
|
default 27
|
|
range 27 BT_BUF_ACL_RX_SIZE if BT_BUF_ACL_RX_SIZE < 251
|
|
range 27 251
|
|
help
|
|
Set the maximum data length of PDU supported in the Controller.
|
|
|
|
config BT_CTLR_PHY
|
|
# Hidden option to enable support for Bluetooth 5.0 PHY Update
|
|
# Procedure in the Controller.
|
|
bool
|
|
depends on BT_PHY_UPDATE && BT_CTLR_PHY_UPDATE_SUPPORT
|
|
select BT_CTLR_EXT_REJ_IND
|
|
default y
|
|
|
|
config BT_CTLR_MIN_USED_CHAN
|
|
bool "Minimum Number of Used Channels"
|
|
depends on BT_CTLR_MIN_USED_CHAN_SUPPORT
|
|
default y
|
|
help
|
|
Enable support for Bluetooth 5.0 Minimum Number of Used Channels
|
|
Procedure in the Controller.
|
|
|
|
config BT_CTLR_CONN_RSSI
|
|
bool "Connection RSSI"
|
|
depends on BT_CTLR_CONN_RSSI_SUPPORT
|
|
default y if BT_HCI_RAW
|
|
help
|
|
Enable connection RSSI measurement.
|
|
|
|
config BT_CTLR_CHECK_SAME_PEER_CONN
|
|
bool
|
|
default BT_MAX_CONN > 1 && !BT_CTLR_ALLOW_SAME_PEER_CONN
|
|
|
|
endif # BT_CONN
|
|
|
|
config BT_CTLR_FILTER
|
|
bool "Device Whitelist Support"
|
|
default y
|
|
help
|
|
Enable support for controller device whitelist feature
|
|
|
|
config BT_CTLR_PRIVACY
|
|
bool "LE Controller-based Privacy"
|
|
depends on BT_CTLR_PRIVACY_SUPPORT
|
|
default y
|
|
select BT_CTLR_FILTER if BT_LL_SW_SPLIT
|
|
select BT_RPA
|
|
help
|
|
Enable support for Bluetooth v4.2 LE Controller-based Privacy feature
|
|
in the Controller.
|
|
|
|
config BT_CTLR_WL_SIZE
|
|
int "LE Controller-based Privacy White List size"
|
|
depends on BT_CTLR_FILTER
|
|
default 8
|
|
range 1 8 if (SOC_COMPATIBLE_NRF || SOC_OPENISA_RV32M1_RISCV32)
|
|
range 1 16 if !(SOC_COMPATIBLE_NRF || SOC_OPENISA_RV32M1_RISCV32)
|
|
help
|
|
Set the size of the White List for LE Controller-based Privacy.
|
|
On nRF5x-based controllers, the hardware imposes a limit of 8 devices.
|
|
On OpenISA-based controllers, the hardware imposes a limit of 8 devices.
|
|
|
|
config BT_CTLR_RL_SIZE
|
|
int "LE Controller-based Privacy Resolving List size"
|
|
depends on BT_CTLR_PRIVACY
|
|
default 8
|
|
range 1 8 if SOC_COMPATIBLE_NRF
|
|
range 1 8 if SOC_OPENISA_RV32M1_RISCV32
|
|
help
|
|
Set the size of the Resolving List for LE Controller-based Privacy.
|
|
On nRF5x-based controllers, the hardware imposes a limit of 8 devices.
|
|
On OpenISA-based controllers, the hardware imposes a limit of 8 devices.
|
|
|
|
config BT_CTLR_EXT_SCAN_FP
|
|
bool "LE Extended Scanner Filter Policies"
|
|
depends on BT_OBSERVER && BT_CTLR_EXT_SCAN_FP_SUPPORT
|
|
default y
|
|
help
|
|
Enable support for Bluetooth v4.2 LE Extended Scanner Filter Policies
|
|
in the Controller.
|
|
|
|
config BT_CTLR_PHY_2M
|
|
bool "2Mbps PHY Support"
|
|
depends on (BT_CTLR_PHY || BT_CTLR_ADV_EXT) && BT_CTLR_PHY_2M_SUPPORT
|
|
default y
|
|
help
|
|
Enable support for Bluetooth 5.0 2Mbps PHY in the Controller.
|
|
|
|
config BT_CTLR_PHY_CODED
|
|
bool "Coded PHY Support"
|
|
depends on (BT_CTLR_PHY || BT_CTLR_ADV_EXT) && BT_CTLR_PHY_CODED_SUPPORT
|
|
default y if BT_HCI_RAW
|
|
help
|
|
Enable support for Bluetooth 5.0 Coded PHY in the Controller.
|
|
|
|
config BT_CTLR_CHAN_SEL_2
|
|
bool "Channel Selection Algorithm #2"
|
|
depends on (BT_CONN || BT_CTLR_ADV_PERIODIC || BT_CTLR_SYNC_PERIODIC) && BT_CTLR_CHAN_SEL_2_SUPPORT
|
|
default y
|
|
help
|
|
Enable support for Bluetooth 5.0 LE Channel Selection Algorithm #2 in
|
|
the Controller.
|
|
|
|
config BT_CTLR_ADV_EXT
|
|
bool "LE Advertising Extensions" if !BT_LL_SW_SPLIT
|
|
depends on BT_CTLR_ADV_EXT_SUPPORT
|
|
select BT_CTLR_SCAN_REQ_NOTIFY if BT_LL_SW_SPLIT && BT_BROADCASTER
|
|
# Enable by default for BT_LL_SW_SPLIT when "LE Advertising Set Terminated event" is implemented
|
|
default y if BT_EXT_ADV && !BT_LL_SW_SPLIT
|
|
help
|
|
Enable support for Bluetooth 5.0 LE Advertising Extensions in the
|
|
Controller.
|
|
|
|
config BT_CTLR_ADV_EXT
|
|
prompt "LE Advertising Extensions [EXPERIMENTAL]" if BT_LL_SW_SPLIT
|
|
|
|
if BT_CTLR_ADV_EXT
|
|
|
|
config BT_CTLR_ADV_SET
|
|
int "LE Advertising Extensions Sets"
|
|
depends on BT_BROADCASTER
|
|
range 1 64
|
|
default BT_EXT_ADV_MAX_ADV_SET if BT_EXT_ADV
|
|
help
|
|
Maximum supported advertising sets.
|
|
|
|
config BT_CTLR_ADV_PERIODIC
|
|
bool "LE Periodic Advertising in Advertising State" if !BT_LL_SW_SPLIT
|
|
depends on BT_BROADCASTER && BT_CTLR_ADV_PERIODIC_SUPPORT
|
|
select BT_CTLR_CHAN_SEL_2
|
|
default y if BT_PER_ADV
|
|
help
|
|
Enable support for Bluetooth 5.0 LE Periodic Advertising in the
|
|
Controller.
|
|
|
|
config BT_CTLR_ADV_PERIODIC
|
|
bool "LE Periodic Advertising in Advertising State [EXPERIMENTAL]" if BT_LL_SW_SPLIT
|
|
|
|
config BT_CTLR_SYNC_PERIODIC
|
|
bool "LE Periodic Advertising in Synchronization State" if !BT_LL_SW_SPLIT
|
|
depends on BT_OBSERVER && BT_CTLR_SYNC_PERIODIC_SUPPORT
|
|
select BT_CTLR_CHAN_SEL_2
|
|
default y if BT_PER_ADV_SYNC
|
|
help
|
|
Enable support for Bluetooth 5.0 LE Periodic Advertising in
|
|
Synchronization state in the Controller.
|
|
|
|
config BT_CTLR_SYNC_PERIODIC
|
|
bool "LE Periodic Advertising in Synchronization State [EXPERIMENTAL]" if BT_LL_SW_SPLIT
|
|
|
|
config BT_CTLR_ADV_ISO
|
|
bool "LE Broadcast Isochronous Channel advertising" if !BT_LL_SW_SPLIT
|
|
depends on BT_BROADCASTER && BT_CTLR_ADV_ISO_SUPPORT
|
|
select BT_CTLR_ADV_PERIODIC
|
|
help
|
|
Enable support for Bluetooth 5.2 LE Isochronous Advertising in the
|
|
Controller.
|
|
|
|
config BT_CTLR_ADV_ISO
|
|
bool "LE Broadcast Isochronous Channel advertising [EXPERIMENTAL]" if BT_LL_SW_SPLIT
|
|
|
|
config BT_CTLR_SYNC_ISO
|
|
bool "LE Broadcast Isochronous Channel advertising sync" if !BT_LL_SW_SPLIT
|
|
depends on BT_OBSERVER && BT_CTLR_SYNC_ISO_SUPPORT
|
|
select BT_CTLR_SYNC_PERIODIC
|
|
help
|
|
Enable support for Bluetooth 5.2 LE Isochronous Advertising sync in
|
|
the Controller.
|
|
|
|
config BT_CTLR_SYNC_ISO
|
|
bool "LE Broadcast Isochronous Channel advertising sync [EXPERIMENTAL]" if BT_LL_SW_SPLIT
|
|
|
|
config BT_CTLR_BROADCAST_ISO
|
|
bool
|
|
default BT_CTLR_ADV_ISO || BT_CTLR_SYNC_ISO
|
|
|
|
config BT_CTLR_ADV_ISO_SET
|
|
int "LE Isochronous Channel advertising sets"
|
|
depends on BT_CTLR_ADV_ISO
|
|
range 1 32
|
|
default 1
|
|
help
|
|
Maximum supported advertising sets.
|
|
|
|
config BT_CTLR_ADV_DATA_LEN_MAX
|
|
int "Maximum Advertising Data Length"
|
|
range 31 1650
|
|
help
|
|
Maximum Extended Advertising Data Length.
|
|
|
|
endif # BT_CTLR_ADV_EXT
|
|
|
|
config BT_CTLR_SET_HOST_FEATURE
|
|
bool "LE Set Host Feature Command [EXPERIMENTAL]"
|
|
help
|
|
Enables optional LE Set Host Feature Command
|
|
|
|
config BT_CTLR_CENTRAL_ISO
|
|
bool "LE Connected Isochronous Stream Central" if !BT_LL_SW_SPLIT
|
|
depends on BT_CTLR_CENTRAL_ISO_SUPPORT && BT_CENTRAL
|
|
help
|
|
Enable support for Bluetooth 5.2 LE Connected Isochronous Stream
|
|
Central role in the Controller.
|
|
|
|
config BT_CTLR_CENTRAL_ISO
|
|
bool "LE Connected Isochronous Stream Central [EXPERIMENTAL]" if BT_LL_SW_SPLIT
|
|
select BT_CTLR_SET_HOST_FEATURE
|
|
|
|
config BT_CTLR_PERIPHERAL_ISO
|
|
bool "LE Connected Isochronous Stream Peripheral" if !BT_LL_SW_SPLIT
|
|
depends on BT_CTLR_PERIPHERAL_ISO_SUPPORT && BT_PERIPHERAL
|
|
help
|
|
Enable support for Bluetooth 5.2 LE Connected Isochronous Stream
|
|
Peripheral role in the Controller.
|
|
|
|
config BT_CTLR_PERIPHERAL_ISO
|
|
bool "LE Connected Isochronous Stream Peripheral [EXPERIMENTAL]" if BT_LL_SW_SPLIT
|
|
select BT_CTLR_SET_HOST_FEATURE
|
|
|
|
config BT_CTLR_CONN_ISO
|
|
bool
|
|
default BT_CTLR_CENTRAL_ISO || BT_CTLR_PERIPHERAL_ISO
|
|
|
|
config BT_CTLR_CONN_ISO_STREAMS
|
|
int "LE Connected Isochronous Streams"
|
|
depends on BT_CTLR_CONN_ISO
|
|
range 1 64
|
|
default 2
|
|
help
|
|
Maximum supported total number of CISes.
|
|
|
|
config BT_CTLR_CONN_ISO_GROUPS
|
|
int "LE Connected Isochronous Groups"
|
|
depends on BT_CTLR_CONN_ISO
|
|
range 1 240
|
|
default 1
|
|
help
|
|
Maximum supported CIGs.
|
|
|
|
config BT_CTLR_CONN_ISO_STREAMS_PER_GROUP
|
|
int "LE Connected Isochronous Streams per Group"
|
|
depends on BT_CTLR_CONN_ISO
|
|
range 1 31
|
|
default 2
|
|
help
|
|
Maximum supported CISes per CIG.
|
|
|
|
config BT_CTLR_ISO
|
|
bool
|
|
default BT_CTLR_BROADCAST_ISO || BT_CTLR_CONN_ISO
|
|
|
|
config BT_CTLR_DTM
|
|
bool
|
|
help
|
|
Enable support for Direct Test Mode in the Controller.
|
|
|
|
config BT_CTLR_DTM_HCI
|
|
bool "Direct Test Mode over HCI"
|
|
depends on BT_CTLR_DTM_HCI_SUPPORT
|
|
select BT_CTLR_DTM
|
|
help
|
|
Enable support for Direct Test Mode over the HCI transport.
|
|
|
|
config BT_CTLR_SMI_RX
|
|
bool "Stable modulation index - Receiver"
|
|
depends on BT_CTLR_SMI_SUPPORT
|
|
help
|
|
Enable support for Bluetooth 5.0 SMI RX in the Controller.
|
|
|
|
config BT_CTLR_SMI_TX
|
|
bool "Stable modulation index - Transmitter"
|
|
depends on BT_CTLR_SMI_SUPPORT
|
|
help
|
|
Enable support for Bluetooth 5.0 SMI TX in the Controller.
|
|
|
|
config BT_CTLR_SMI_TX_SETTING
|
|
bool "Stable modulation index - Transmitter as setting"
|
|
depends on BT_CTLR_SMI_TX && BT_CTLR_SETTINGS
|
|
help
|
|
Enable support for Bluetooth 5.0 SMI TX through a system setting.
|
|
|
|
config BT_CTLR_HCI_CODEC_AND_DELAY_INFO
|
|
bool "Codecs and controller delay information commands"
|
|
help
|
|
Enable HCI commands to read information about supported
|
|
codecs, codec capabilities, and controller delay.
|
|
|
|
source "subsys/bluetooth/controller/Kconfig.df"
|
|
source "subsys/bluetooth/controller/Kconfig.ll_sw_split"
|
|
|
|
config BT_CTLR_ASSERT_HANDLER
|
|
bool "Application Defined Assertion Handler"
|
|
help
|
|
This option enables an application-defined sink for the
|
|
controller assertion mechanism. This must be defined in
|
|
application code as void \"bt_ctlr_assert_handle(char \*, int)\"
|
|
and will be invoked whenever the controller code encounters
|
|
an unrecoverable error.
|
|
|
|
endif # BT_CTLR
|
|
|
|
config BT_CTLR_DEBUG_PINS_CPUAPP
|
|
bool "Bluetooth Controller Debug Pins"
|
|
depends on BOARD_NRF5340DK_NRF5340_CPUAPP
|
|
help
|
|
Route debug GPIO toggling for the BLE Controller. Enable this when
|
|
using Bluetooth Controller Debug Pins in co-processor and the main
|
|
processor needs to setup and/or route the signals.
|