zephyr/boards/nordic/nrf7002dk/Kconfig
Johan Hedberg 8b02141ca7 Bluetooth: Controller: Replace BT_CTLR with HAS_BT_CTLR
Deprecate BT_CTLR, and add a new HAS_BT_CTLR as a virtual option which
specific users (like BT_LL_SW_SPLIT) select. This also means that we can
remove all places that were forcefully enabling the BT_CTLR option, and
instead we now depend on devicetree to get some local LL HCI driver
enabled which in turn also enables the HAS_BT_CTLR option.

Signed-off-by: Johan Hedberg <johan.hedberg@silabs.com>
2024-12-03 10:16:44 +01:00

47 lines
1.1 KiB
Text

# nRF5340 DK board configuration
# Copyright (c) 2024 Nordic Semiconductor ASA
# SPDX-License-Identifier: Apache-2.0
config IPM_NRFX
default IPM
config MBOX_NRFX_IPC
default MBOX
if BOARD_NRF7002DK_NRF5340_CPUAPP || \
BOARD_NRF7002DK_NRF5340_CPUAPP_NRF7001
config BT_HCI_IPC
default y if BT
config HEAP_MEM_POOL_ADD_SIZE_BOARD
int
default 4096 if BT_HCI_IPC
config DOMAIN_CPUNET_BOARD
string
default "nrf7002dk/nrf5340/cpunet"
help
The board which will be used for CPUNET domain when creating a multi
image application where one or more images should be located on
another board. For example hci_ipc on the nRF5340_cpunet for
Bluetooth applications.
endif
if BOARD_NRF7002DK_NRF5340_CPUNET
config BT_ECC
default y if BT
config DOMAIN_CPUAPP_BOARD
string
default "nrf7002dk/nrf5340/cpuapp" if BOARD_NRF7002DK_NRF5340_CPUAPP
default "nrf7002dk/nrf5340/cpuapp/nrf7001" if BOARD_NRF7002DK_NRF5340_CPUAPP_NRF7001
help
The board which will be used for CPUAPP domain when creating a multi
image application where one or more images should be located on
another board.
endif