From 2cc78b7d43d4fd94c7b5aa21bfb1fc0e017ee331 Mon Sep 17 00:00:00 2001 From: EricB-ADI <122300463+EricB-ADI@users.noreply.github.com> Date: Wed, 28 Aug 2024 13:29:47 -0500 Subject: [PATCH 1/3] added gitignore for internal folder --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 5ec3816451..1462d57196 100644 --- a/.gitignore +++ b/.gitignore @@ -39,3 +39,4 @@ package.json .python-version mxc_version.h mxc_version.mk +packetcraft-adi From ad9822f6a86924fdbb43fc90baaad563bef3fd46 Mon Sep 17 00:00:00 2001 From: EricB-ADI <122300463+EricB-ADI@users.noreply.github.com> Date: Wed, 28 Aug 2024 14:35:32 -0500 Subject: [PATCH 2/3] runtime memory alloocation for feat ISO --- Examples/MAX32655/Bluetooth/BLE5_ctr/main.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Examples/MAX32655/Bluetooth/BLE5_ctr/main.c b/Examples/MAX32655/Bluetooth/BLE5_ctr/main.c index b3f59a29f0..6ef76f5347 100644 --- a/Examples/MAX32655/Bluetooth/BLE5_ctr/main.c +++ b/Examples/MAX32655/Bluetooth/BLE5_ctr/main.c @@ -45,6 +45,7 @@ #include "board.h" #include "pal_timer.h" + #define MAX_PRIORITY ((0x1 << __NVIC_PRIO_BITS) - 1) /*! \brief UART TX buffer size */ @@ -119,8 +120,8 @@ static void mainWsfInit(void) 12 + HCI_ISO_DL_MAX_LEN + mainLlRtCfg.maxAclLen + 4 + BB_DATA_PDU_TAILROOM; /* Use single pool for data buffers. */ -#if (BT_VER > 9) - WSF_ASSERT(mainLlRtCfg.maxAclLen == mainLlRtCfg.maxIsoSduLen); +#if (BT_VER > 9) && INIT_FEAT_ISO + mainLlRtCfg.maxIsoSduLen = mainLlRtCfg.maxAclLen; #endif /* Ensure pool buffers are ordered correctly. */ From 1a569eb22162b5dcc354cfccb2b40db1eba367e9 Mon Sep 17 00:00:00 2001 From: sihyung-maxim Date: Wed, 4 Sep 2024 16:06:52 +0000 Subject: [PATCH 3/3] clang-format bot reformatting. --- Examples/MAX32655/Bluetooth/BLE5_ctr/main.c | 1 - 1 file changed, 1 deletion(-) diff --git a/Examples/MAX32655/Bluetooth/BLE5_ctr/main.c b/Examples/MAX32655/Bluetooth/BLE5_ctr/main.c index 6ef76f5347..e2b71be052 100644 --- a/Examples/MAX32655/Bluetooth/BLE5_ctr/main.c +++ b/Examples/MAX32655/Bluetooth/BLE5_ctr/main.c @@ -45,7 +45,6 @@ #include "board.h" #include "pal_timer.h" - #define MAX_PRIORITY ((0x1 << __NVIC_PRIO_BITS) - 1) /*! \brief UART TX buffer size */