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
18# Build UF2 by default, supported by the Adafruit nRF52 Bootloader
19CONFIG_BUILD_OUTPUT_UF2=y
20
21# UF2 Bootloader can use DT offset
22CONFIG_BOARD_HAS_NRF5_BOOTLOADER=n
23CONFIG_USE_DT_CODE_PARTITION=y
24