1# SPDX-License-Identifier: Apache-2.0 2 3# Enable MPU 4CONFIG_ARM_MPU=y 5 6# Enable hardware stack protection 7CONFIG_HW_STACK_PROTECTION=y 8 9# Enable TrustZone-M 10CONFIG_ARM_TRUSTZONE_M=y 11 12# This Board implies building Non-Secure firmware 13CONFIG_TRUSTED_EXECUTION_NONSECURE=y 14 15# Enable GPIO 16CONFIG_GPIO=y 17 18# Enable console 19CONFIG_CONSOLE=y 20CONFIG_UART_CONSOLE=y 21 22# Enable UART driver 23CONFIG_SERIAL=y 24 25# Board Kconfig.defconfig enables USB CDC ACM and should disable USB remote 26# wakeup by default. It needs to be disabled here, because the USB nrfx 27# driver always overwrites option from Kconfig mentioned above with the 28# imply from CONFIG_USB_NRFX. 29CONFIG_USB_DEVICE_REMOTE_WAKEUP=n 30