Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bluetooth: Mesh: Reduce BT_L2CAP_TX_MTU for mesh to 33 #59829

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion subsys/bluetooth/host/Kconfig.l2cap
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ config BT_L2CAP_TX_FRAG_COUNT
config BT_L2CAP_TX_MTU
int "Maximum supported L2CAP MTU for L2CAP TX buffers"
default 253 if BT_BREDR
default 69 if BT_MESH_GATT
default 66 if BT_EATT
default 65 if BT_SMP
default 64 if BT_BAP_UNICAST_SERVER || \
Expand All @@ -39,6 +38,7 @@ config BT_L2CAP_TX_MTU
BT_BAP_SCAN_DELEGATOR || \
BT_BAP_BROADCAST_ASSISTANT
default 49 if BT_HAS || BT_HAS_CLIENT
default 33 if BT_MESH_GATT
default 23
range 66 2000 if BT_EATT
range 65 2000 if BT_SMP
Expand Down
Loading