Add Kconfig options that will be used by the module to call the function with the desired parameters. Refactor the tfm_integration samples and the supported boards. Update west.yml to bring in Cmake changes that use the new KConfigs. Signed-off-by: Øyvind Rønningstad <oyvind.ronningstad@nordicsemi.no>
14 lines
247 B
CMake
14 lines
247 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
set(EMU_PLATFORM qemu)
|
|
|
|
set(QEMU_CPU_TYPE_${ARCH} cortex-m33)
|
|
set(QEMU_FLAGS_${ARCH}
|
|
-cpu ${QEMU_CPU_TYPE_${ARCH}}
|
|
-machine mps2-an521
|
|
-nographic
|
|
-m 16
|
|
-vga none
|
|
)
|
|
board_set_debugger_ifnset(qemu)
|