forked from nrfconnect/sdk-nrf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKconfig
More file actions
46 lines (36 loc) · 1.17 KB
/
Kconfig
File metadata and controls
46 lines (36 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Copyright (c) 2024 Nordic Semiconductor
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
module=BOARD
module-dep=LOG
module-str=Log level for board
source "$(ZEPHYR_BASE)/subsys/logging/Kconfig.template.log_config"
if BOARD_THINGY91X_NRF5340_CPUAPP || BOARD_THINGY91X_NRF5340_CPUAPP_NS
config BOARD_ENABLE_DCDC_APP
bool "Application MCU DCDC converter"
select SOC_DCDC_NRF53X_APP
default y
config BOARD_ENABLE_DCDC_NET
bool "Network MCU DCDC converter"
select SOC_DCDC_NRF53X_NET
default y
config DOMAIN_CPUNET_BOARD
string
default "thingy91x/nrf5340/cpunet"
depends on SOC_NRF53_CPUNET_ENABLE
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_rpmsg on the nRF5340_cpunet for
Bluetooth applications.
endif
if BOARD_THINGY91X_NRF5340_CPUNET
config BT_ECC
default y if BT
config DOMAIN_CPUAPP_BOARD
string
default "thingy91x/nrf5340/cpuapp"
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 # BOARD_THINGY91X_NRF5340_CPUNET