File tree Expand file tree Collapse file tree 6 files changed +28
-3
lines changed
samples/subsys/ipc/ipc_service/multi_endpoint Expand file tree Collapse file tree 6 files changed +28
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ cmake_minimum_required(VERSION 3.20.0)
88
99find_package (Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE} )
1010
11- if (NOT CONFIG_BOARD_NRF5340DK_NRF5340_CPUAPP)
11+ if (NOT CONFIG_BOARD_NRF5340DK_NRF5340_CPUAPP AND
12+ NOT CONFIG_BOARD_NRF5340BSIM_NRF5340_CPUAPP )
1213 message (FATAL_ERROR "${BOARD} is not supported for this sample" )
1314endif ()
1415
Original file line number Diff line number Diff line change @@ -7,3 +7,4 @@ source "share/sysbuild/Kconfig"
77config NET_CORE_BOARD
88string
99 default "nrf5340dk/nrf5340/cpunet" if $(BOARD) = "nrf5340dk"
10+ default "nrf5340bsim/nrf5340/cpunet" if $(BOARD) = "nrf5340bsim"
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) 2022 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 @@ -14,15 +14,21 @@ common:
1414 - " IPC-service HOST \\ [INST 1\\ ] demo ended\\ ."
1515tests :
1616 sample.ipc.multi_endpoint :
17- platform_allow : nrf5340dk/nrf5340/cpuapp
17+ platform_allow :
18+ - nrf5340dk/nrf5340/cpuapp
19+ - nrf5340bsim/nrf5340/cpuapp
1820 integration_platforms :
1921 - nrf5340dk/nrf5340/cpuapp
22+ - nrf5340bsim/nrf5340/cpuapp
2023 tags : ipc
2124 sysbuild : true
2225 sample.ipc.multi_endpoint.icbmsg :
23- platform_allow : nrf5340dk/nrf5340/cpuapp
26+ platform_allow :
27+ - nrf5340dk/nrf5340/cpuapp
28+ - nrf5340bsim/nrf5340/cpuapp
2429 integration_platforms :
2530 - nrf5340dk/nrf5340/cpuapp
31+ - nrf5340bsim/nrf5340/cpuapp
2632 tags : ipc
2733 sysbuild : true
2834 extra_args :
Original file line number Diff line number Diff line change @@ -12,3 +12,6 @@ ExternalZephyrProject_Add(
1212 SOURCE_DIR ${APP_DIR} /remote
1313 BOARD ${SB_CONFIG_NET_CORE_BOARD}
1414)
15+
16+ native_simulator_set_child_images(${DEFAULT_IMAGE} remote)
17+ native_simulator_set_final_executable(${DEFAULT_IMAGE} )
You can’t perform that action at this time.
0 commit comments