Skip to content

Commit

Permalink
Fix BLE commissioning failure
Browse files Browse the repository at this point in the history
DUT refused the send the PBKDF param response due to insufficient
memory on the BLE Host side. THe fix is to increase the memory pool.

Signed-off-by: Doru Gucea <[email protected]>
  • Loading branch information
doru91 committed Nov 25, 2021
1 parent 026f0b7 commit 01b3472
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/platform/nxp/k32w/k32w0/PlatformManagerImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ CHIP_ERROR PlatformManagerImpl::_InitChipStack(void)
if (Chip_GetType() != CHIP_K32W061)
{
err = CHIP_ERROR_INTERNAL;
ChipLogError(DeviceLayer, "Invalid chip type, expected K32W061!");

goto exit;
}

Expand Down
2 changes: 1 addition & 1 deletion third_party/k32w_sdk/nxp/k32w/k32w0/k32w0_sdk.gni
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ template("k32w0_sdk") {
"gTimestamp_Enabled_d=0",
"K32W_LOG_ENABLED=1",
"CHIP_ENABLE_OPENTHREAD=1",
"PoolsDetails_c=_block_size_ 32 _number_of_blocks_ 6 _pool_id_(0) _eol_ _block_size_ 512 _number_of_blocks_ 2 _pool_id_(0) _eol_ _block_size_ 768 _number_of_blocks_ 1 _pool_id_(0) _eol_",
"PoolsDetails_c=_block_size_ 32 _number_of_blocks_ 6 _pool_id_(0) _eol_ _block_size_ 256 _number_of_blocks_ 3 _pool_id_(0) _eol_ _block_size_ 512 _number_of_blocks_ 2 _pool_id_(0) _eol_ _block_size_ 768 _number_of_blocks_ 1 _pool_id_(0) _eol_",
"SUPPORT_FOR_15_4=1",
"gAppMaxConnections_c=1",
"gAppUseBonding_d=0",
Expand Down

0 comments on commit 01b3472

Please sign in to comment.