From 51373459ef3ecdf7eb697cc70efaefa0acd35d33 Mon Sep 17 00:00:00 2001 From: Kamil Kasperczyk <66371704+kkasperczyk-no@users.noreply.github.com> Date: Mon, 7 Jun 2021 16:26:44 +0200 Subject: [PATCH] [nrfconnect] Fixed compilation with dfu overlay error. (#7418) Due to the latest nRF Connect SDK version update few config names related to Bluetooth changed. Device firmware upgrade overlay that is used optionally was not aligned to those changes and now target will not be build because of the compilation errors. Changed Bluetooth configs names in DFU overlay to be compatible with the new nRF Connect SDK version. --- config/nrfconnect/app/overlay-dfu_support.conf | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/config/nrfconnect/app/overlay-dfu_support.conf b/config/nrfconnect/app/overlay-dfu_support.conf index 0760bd8717626c..c09ef695ee0ae3 100644 --- a/config/nrfconnect/app/overlay-dfu_support.conf +++ b/config/nrfconnect/app/overlay-dfu_support.conf @@ -36,6 +36,5 @@ CONFIG_MCUMGR_SMP_BT_AUTHEN=n CONFIG_MCUMGR_BUF_COUNT=6 # Increase BT MTU and RX buffer for big size DFU messages -CONFIG_BT_L2CAP_TX_MTU=252 -CONFIG_BT_L2CAP_RX_MTU=252 -CONFIG_BT_RX_BUF_LEN=260 +CONFIG_BT_L2CAP_TX_MTU=260 +CONFIG_BT_BUF_ACL_RX_SIZE=264