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 GPIO 10CONFIG_GPIO=y 11 12# Board Kconfig.defconfig enables USB CDC ACM and should disable USB remote 13# wakeup by default. It needs to be disabled here, because the USB nrfx 14# driver always overwrites option from Kconfig mentioned above with the 15# imply from CONFIG_USB_NRFX. 16CONFIG_USB_DEVICE_REMOTE_WAKEUP=n 17