1# Copyright (c) 2023 Nordic Semiconductor ASA 2# SPDX-License-Identifier: Apache-2.0 3 4config NATIVE_SIMULATOR_MCU_N 5 int "CPU Number this image targets" 6 range 0 15 7 default 0 8 depends on NATIVE_LIBRARY 9 help 10 Which native simulator microcontroller/CPU number is this image targeting. 11 This option is only applicable for targets which use the 12 native simulator as their runner. 13 14config NATIVE_SIMULATOR_NUMBER_MCUS 15 int "Total number of MCUs this target has" 16 range 1 16 17 default 1 18 depends on NATIVE_LIBRARY 19 help 20 How many AMP MCUs does this target have in total. 21 22config NATIVE_SIMULATOR_PRIMARY_MCU_INDEX 23 int "Which CPU is the primary/preferred" 24 default 0 25 depends on NATIVE_LIBRARY 26 help 27 On a multi MCU device, which MCU is the preferred one. 28 This MCU will for example have its tests command line parameters presented 29 without any prefix. Note that an MCU being primary does not imply it will be 30 the first one to boot, or even that it will boot automatically. 31 32config NATIVE_SIMULATOR_EXTRA_IMAGE_PATHS 33 string "Other cores images to include" 34 depends on NATIVE_LIBRARY 35 help 36 This option can be used to provide the native simulator with other MCUs/Cores images which have 37 been produced by either other Zephyr builds or different OS builds. 38 So you can, for ex., use this application build to produce one core image, and at the same time 39 have it produce the final link with the native simulator runner and the other MCU images. 40 41config NATIVE_SIMULATOR_AUTOSTART_MCU 42 bool "Auto-start this MCU" 43 depends on NATIVE_LIBRARY 44 help 45 Automatically start the MCU this Zephyr image is built for during HW boot, 46 even if in other circumstances this MCU would not start automatically (for ex. because 47 another core is meant to release its reset). 48 If that MCU was, by HW design, going to start at HW boot anyhow, this option does nothing. 49 This option is meant to facilitate development. 50