Add sample configuration 'nrf54h20_app_ppr' where: - cpuapp sends messages to cpuppr vevif channel 15, - cpuppr sends messages to cpuapp bellboard channel 18. Add sample configuration 'nrf54h20_rad_app' where: - cpuapp sends messages to cpurad bellboard channel 12, - cpurad sends messages to cpuapp bellboard channel 18. Signed-off-by: Sebastian Głąb <sebastian.glab@nordicsemi.no>
20 lines
1,016 B
Text
20 lines
1,016 B
Text
# Copyright 2023 Nordic Semiconductor ASA
|
|
# Copyright 2023-2024 NXP
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
source "share/sysbuild/Kconfig"
|
|
|
|
config REMOTE_BOARD
|
|
string
|
|
default "nrf5340dk/nrf5340/cpunet" if $(BOARD) = "nrf5340dk"
|
|
default "nrf5340bsim/nrf5340/cpunet" if $(BOARD_TARGET_STRING) = "NRF5340BSIM_NRF5340_CPUAPP"
|
|
default "adp_xc7k/ae350" if $(BOARD) = "adp_xc7k"
|
|
default "mimxrt1170_evkb/mimxrt1176/cm4" if $(BOARD) = "mimxrt1170_evkb"
|
|
default "mimxrt1170_evk/mimxrt1176/cm4" if $(BOARD) = "mimxrt1170_evk"
|
|
default "mimxrt1160_evk/mimxrt1166/cm4" if $(BOARD) = "mimxrt1160_evk"
|
|
default "lpcxpresso55s69/lpc55s69/cpu1" if $(BOARD) = "lpcxpresso55s69"
|
|
default "nrf54h20dk/nrf54h20/cpuppr" if "$(BOARD)${BOARD_QUALIFIERS}" = "nrf54h20dk/nrf54h20/cpuapp"
|
|
default "nrf54h20dk/nrf54h20/cpuapp" if "$(BOARD)${BOARD_QUALIFIERS}" = "nrf54h20dk/nrf54h20/cpurad"
|
|
default "nrf54l15pdk/nrf54l15/cpuflpr" if $(BOARD) = "nrf54l15pdk"
|
|
default "stm32h747i_disco/stm32h747xx/m4" if $(BOARD) = "stm32h747i_disco"
|