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

[nrf toup] Removed setting BT_HCI_RAW_RESERVE config to 1 #442

Merged
merged 4 commits into from
May 28, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
3 changes: 0 additions & 3 deletions config/nrfconnect/chip-module/Kconfig.defaults
Original file line number Diff line number Diff line change
Expand Up @@ -385,9 +385,6 @@ config MBEDTLS_ECP_DP_SECP256R1_ENABLED

endif # !CHIP_CRYPTO_PSA

config MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG
default n if CHIP_WIFI

config MBEDTLS_SSL_OUT_CONTENT_LEN
default 900 if CHIP_WIFI

Expand Down
3 changes: 0 additions & 3 deletions config/nrfconnect/chip-module/Kconfig.hci_ipc.defaults
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,6 @@ config BT_CTLR_DATA_LENGTH_MAX
config BT_CTLR_ASSERT_HANDLER
default y

config BT_HCI_RAW_RESERVE
default 1

# Disable 2M PHY due to interoperability issues.
config BT_CTLR_PHY_2M
default n
Expand Down
6 changes: 6 additions & 0 deletions config/nrfconnect/chip-module/Kconfig.mcuboot.defaults
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ config CONSOLE_HANDLER
config BOOT_BANNER
default n

config NCS_BOOT_BANNER
default n

config MCUBOOT_BOOT_BANNER
default n

config TIMESLICING
default n

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,6 @@ config BT_CTLR_DATA_LENGTH_MAX
config BT_CTLR_ASSERT_HANDLER
default y

config BT_HCI_RAW_RESERVE
default 1

# Disable 2M PHY due to interoperability issues.
config BT_CTLR_PHY_2M
default n
Expand Down
2 changes: 2 additions & 0 deletions src/platform/Zephyr/ConfigurationManagerImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@

#include "InetUtils.h"

#include <zephyr/net/net_if.h>

#include <lib/support/CodeUtils.h>
#include <lib/support/logging/CHIPLogging.h>

Expand Down
1 change: 1 addition & 0 deletions src/platform/nrfconnect/ConnectivityManagerImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include <platform/ConnectivityManager.h>
#include <platform/Zephyr/InetUtils.h>
#include <platform/internal/BLEManager.h>
#include <zephyr/net/net_if.h>

#include <platform/internal/GenericConnectivityManagerImpl_UDP.ipp>

Expand Down
Loading