mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-08 19:45:33 +00:00
Remove dependency on CONFIG_BT_ACL_FLOW_CONTROL and use CONFIG_BT_L2CAP_RX_MTU always to set L2CAP RX MTU. The ATT MTU is set from two different KConfig options depending on if CONFIG_BT_ACL_FLOW_CONTROL is enabled, which makes it a confusing option and hard to provide a conf file that supports multiple board configurations. This changes the behavior when CONFIG_BT_ACL_FLOW_CONTROL and CONFIG_BT_BUF_RX_LEN was used to set the L2CAP RX MTU, and by extension the ATT MTU. Signed-off-by: Joakim Andersson <joakim.andersson@nordicsemi.no>
67 lines
1.8 KiB
Plaintext
67 lines
1.8 KiB
Plaintext
# Bluetooth ATT/GATT configuration options
|
|
|
|
# Copyright (c) 2019 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menu "L2CAP Options"
|
|
|
|
config BT_L2CAP_RX_MTU
|
|
int "Maximum supported L2CAP MTU for incoming data"
|
|
default 200 if BT_BREDR
|
|
default BT_EATT_RX_MTU if BT_EATT
|
|
default 65 if BT_SMP
|
|
default 23
|
|
range 70 1300 if BT_EATT
|
|
range 65 1300 if BT_SMP
|
|
range 23 1300
|
|
help
|
|
Maximum size of each incoming L2CAP PDU.
|
|
|
|
config BT_L2CAP_TX_BUF_COUNT
|
|
int "Number of L2CAP TX buffers"
|
|
default NET_BUF_TX_COUNT if NET_L2_BT
|
|
default BT_CTLR_TX_BUFFERS if BT_CTLR
|
|
default 3
|
|
range 2 255
|
|
help
|
|
Number of buffers available for outgoing L2CAP packets.
|
|
|
|
config BT_L2CAP_TX_FRAG_COUNT
|
|
int "Number of L2CAP TX fragment buffers"
|
|
default NET_BUF_TX_COUNT if NET_L2_BT
|
|
default 2
|
|
range 0 255
|
|
help
|
|
Number of buffers available for fragments of TX buffers. Warning:
|
|
setting this to 0 means that the application must ensure that
|
|
queued TX buffers never need to be fragmented, i.e. that the
|
|
controller's buffer size is large enough. If this is not ensured,
|
|
and there are no dedicated fragment buffers, a deadlock may occur.
|
|
In most cases the default value of 2 is a safe bet.
|
|
|
|
config BT_L2CAP_TX_MTU
|
|
int "Maximum supported L2CAP MTU for L2CAP TX buffers"
|
|
default 253 if BT_BREDR
|
|
default 65 if BT_SMP
|
|
default 23
|
|
range 65 2000 if BT_SMP
|
|
range 23 2000
|
|
help
|
|
Maximum L2CAP MTU for L2CAP TX buffers.
|
|
|
|
config BT_L2CAP_DYNAMIC_CHANNEL
|
|
bool "L2CAP Dynamic Channel support"
|
|
depends on BT_SMP
|
|
help
|
|
This option enables support for LE Connection oriented Channels,
|
|
allowing the creation of dynamic L2CAP Channels.
|
|
|
|
config BT_DEBUG_L2CAP
|
|
bool "Bluetooth L2CAP debug"
|
|
depends on BT_DEBUG
|
|
help
|
|
This option enables debug support for the Bluetooth
|
|
L2ACP layer.
|
|
|
|
endmenu
|