From 18df58f1df446961d222d4ba442b93813b1f6e0a Mon Sep 17 00:00:00 2001 From: Rahul Tank Date: Thu, 14 Apr 2022 15:34:33 +0530 Subject: [PATCH] Nimble: Corrected default value for ATT_PREFERRED_MTU and ACL_BUF_SIZE --- components/bt/host/nimble/Kconfig.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/bt/host/nimble/Kconfig.in b/components/bt/host/nimble/Kconfig.in index 3233662f8b..2e8b5562b0 100644 --- a/components/bt/host/nimble/Kconfig.in +++ b/components/bt/host/nimble/Kconfig.in @@ -311,7 +311,7 @@ config BT_NIMBLE_GAP_DEVICE_NAME_MAX_LEN config BT_NIMBLE_ATT_PREFERRED_MTU int "Preferred MTU size in octets" depends on BT_NIMBLE_ENABLED - default 512 + default 256 help This is the default value of ATT MTU indicated by the device during an ATT MTU exchange. This value can be changed using API ble_att_set_preferred_mtu() @@ -333,7 +333,7 @@ config BT_NIMBLE_ACL_BUF_COUNT config BT_NIMBLE_ACL_BUF_SIZE int "ACL Buffer size" depends on BT_NIMBLE_ENABLED - default 251 + default 255 help This is the maximum size of the data portion of HCI ACL data packets. It does not include the HCI data header (of 4 bytes)