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# Enable GPIO
13CONFIG_GPIO=y
14
15# Enable console
16CONFIG_CONSOLE=y
17CONFIG_UART_CONSOLE=y
18
19# Enable UART driver
20CONFIG_SERIAL=y
21
22# Board Kconfig.defconfig enables USB CDC ACM and should disable USB remote
23# wakeup by default. It needs to be disabled here, because the USB nrfx
24# driver always overwrites option from Kconfig mentioned above with the
25# imply from CONFIG_USB_NRFX.
26CONFIG_USB_DEVICE_REMOTE_WAKEUP=n
27