1# Copyright (c) 2016 Zephyr Contributors 2# SPDX-License-Identifier: Apache-2.0 3 4if BOARD_QEMU_CORTEX_M3 5 6config BUILD_OUTPUT_BIN 7 default n 8 9# DWT is not properly emulated in QEMU 10choice NULL_POINTER_EXCEPTION_DETECTION 11 bool 12 default NULL_POINTER_EXCEPTION_DETECTION_NONE 13endchoice 14 15# BT relies on PSA Crypto API to perform crypto operations and, on this platform, 16# these APIs are provided thougth Mbed TLS. Unfortunately this platform is not 17# provided with a true random number generator which is required to properly 18# initialize the PSA Crypto core, so we need to enable the fake TEST_RANDOM_GENERATOR. 19config TEST_RANDOM_GENERATOR 20 bool 21 default y if BT 22 23endif # BOARD_QEMU_CORTEX_M3 24