Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(Other): Updated gitignore to include internal folder #1143

Merged
merged 4 commits into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,4 @@ package.json
.python-version
mxc_version.h
mxc_version.mk
packetcraft-adi
4 changes: 2 additions & 2 deletions Examples/MAX32655/Bluetooth/BLE5_ctr/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,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. */
Expand Down