This is an automated email from the ASF dual-hosted git repository.

kopyscinski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git

commit 7cf4b883d48316d7402c68220fb281328d52a309
Author: Krzysztof Kopyściński <[email protected]>
AuthorDate: Wed Jun 9 11:21:55 2021 +0200

    apps/blestress: set BLE_ACL_BUF_SIZE to proper value
    
    With current (default) CoC MPS setting we were trying to send more
    than HCI packet could hold. This patch increases its size to sufficient
    value.
---
 apps/blestress/syscfg.yml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/apps/blestress/syscfg.yml b/apps/blestress/syscfg.yml
index 4f7fa4dac..b24280436 100644
--- a/apps/blestress/syscfg.yml
+++ b/apps/blestress/syscfg.yml
@@ -82,3 +82,6 @@ syscfg.vals:
 
     # Whether to save data to sys/config, or just keep it in RAM.
     BLE_STORE_CONFIG_PERSIST: 0
+
+    # ACL buf size must be able to contain CoC MPS plus ACL header
+    BLE_TRANSPORT_ACL_SIZE: MYNEWT_VAL_BLE_L2CAP_COC_MPS + 4

Reply via email to