From 664911d5ebc4f1e5f1db64bcf2a4ef03a6ebd89e Mon Sep 17 00:00:00 2001 From: Stine Akredalen Date: Tue, 10 Dec 2024 14:19:13 +0100 Subject: [PATCH] samples: Bluetooth: Mesh: increase HCI cmd buffers Increased the number of HCI command buffers for samples with additional SMP services. One additional buffer per service added. Signed-off-by: Stine Akredalen --- samples/bluetooth/mesh/ble_peripheral_lbs_coex/prj.conf | 3 +++ samples/bluetooth/mesh/light/overlay-dfu.conf | 3 +++ 2 files changed, 6 insertions(+) diff --git a/samples/bluetooth/mesh/ble_peripheral_lbs_coex/prj.conf b/samples/bluetooth/mesh/ble_peripheral_lbs_coex/prj.conf index 643149bca74c..da0ee11334da 100644 --- a/samples/bluetooth/mesh/ble_peripheral_lbs_coex/prj.conf +++ b/samples/bluetooth/mesh/ble_peripheral_lbs_coex/prj.conf @@ -61,3 +61,6 @@ CONFIG_BT_MESH_ONOFF_SRV=y # Enable the LBS service CONFIG_BT_LBS=y CONFIG_BT_LBS_POLL_BUTTON=y + +# Increase the HCI command buffers to 3 for additional Peripheral LE Service +CONFIG_BT_BUF_CMD_TX_COUNT=3 diff --git a/samples/bluetooth/mesh/light/overlay-dfu.conf b/samples/bluetooth/mesh/light/overlay-dfu.conf index 96e0bad51200..dbfbc6761700 100644 --- a/samples/bluetooth/mesh/light/overlay-dfu.conf +++ b/samples/bluetooth/mesh/light/overlay-dfu.conf @@ -18,3 +18,6 @@ CONFIG_BT_MAX_CONN=3 # One extra identity for SMP service CONFIG_BT_ID_MAX=2 + +# Increase the HCI command buffers to 3 for additional SMP service +CONFIG_BT_BUF_CMD_TX_COUNT=3