File tree Expand file tree Collapse file tree 6 files changed +21
-0
lines changed
samples/subsys/ipc/ipc_service/static_vrings Expand file tree Collapse file tree 6 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
1212set (REMOTE_ZEPHYR_DIR ${CMAKE_CURRENT_BINARY_DIR} /../remote/zephyr)
1313
1414if (NOT (CONFIG_BOARD_NRF5340DK_NRF5340_CPUAPP OR
15+ CONFIG_BOARD_NRF5340BSIM_NRF5340_CPUAPP OR
1516 CONFIG_BOARD_LPCXPRESSO55S69_LPC55S69_CPU0 OR
1617 CONFIG_BOARD_MIMXRT1160_EVK_MIMXRT1166_CM7 OR
1718 CONFIG_BOARD_MIMXRT1170_EVK_MIMXRT1176_CM7
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ source "share/sysbuild/Kconfig"
88config NET_CORE_BOARD
99string
1010 default "nrf5340dk/nrf5340/cpunet" if $(BOARD) = "nrf5340dk"
11+ default "nrf5340bsim/nrf5340/cpunet" if $(BOARD) = "nrf5340bsim"
1112 default "lpcxpresso55s69/lpc55s69/cpu1" if $(BOARD) = "lpcxpresso55s69"
1213 default "mimxrt1160_evk/mimxrt1166/cm4" if $(BOARD) = "mimxrt1160_evk"
1314 default "mimxrt1170_evk/mimxrt1176/cm4" if $(BOARD) = "mimxrt1170_evk"
Original file line number Diff line number Diff line change 1+ /*
2+ * Copyright (c) 2024 Nordic Semiconductor ASA
3+ *
4+ * SPDX-License-Identifier: Apache-2.0
5+ */
6+
7+ #include "nrf5340dk_nrf5340_cpuapp.overlay"
Original file line number Diff line number Diff line change 1+ /*
2+ * Copyright (c) 2024 Nordic Semiconductor ASA
3+ *
4+ * SPDX-License-Identifier: Apache-2.0
5+ */
6+
7+ #include "nrf5340dk_nrf5340_cpunet.overlay"
Original file line number Diff line number Diff line change 44 sample.ipc.static_vrings :
55 platform_allow :
66 - nrf5340dk/nrf5340/cpuapp
7+ - nrf5340bsim/nrf5340/cpuapp
78 - lpcxpresso55s69/lpc55s69/cpu0
89 - mimxrt1160_evk/mimxrt1166/cm7
910 - mimxrt1170_evk/mimxrt1176/cm7
1011 - mimxrt1170_evk@B/mimxrt1176/cm7
1112 integration_platforms :
1213 - nrf5340dk/nrf5340/cpuapp
14+ - nrf5340bsim/nrf5340/cpuapp
1315 tags : ipc
1416 sysbuild : true
1517 harness : console
Original file line number Diff line number Diff line change @@ -21,3 +21,6 @@ ExternalZephyrProject_Add(
2121# remote core's build, such as the output image's LMA
2222add_dependencies (${DEFAULT_IMAGE} ${REMOTE_APP} )
2323sysbuild_add_dependencies(CONFIGURE ${DEFAULT_IMAGE} ${REMOTE_APP} )
24+
25+ native_simulator_set_child_images(${DEFAULT_IMAGE} remote)
26+ native_simulator_set_final_executable(${DEFAULT_IMAGE} )
You can’t perform that action at this time.
0 commit comments