You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
511 B
25 lines
511 B
# Copyright (c) 2024 Nordic Semiconductor ASA |
|
# SPDX-License-Identifier: Apache-2.0 |
|
|
|
# Enable UART driver |
|
CONFIG_SERIAL=y |
|
|
|
# Enable console |
|
CONFIG_CONSOLE=y |
|
CONFIG_UART_CONSOLE=y |
|
|
|
CONFIG_USE_DT_CODE_PARTITION=y |
|
|
|
# Enable MPU |
|
CONFIG_ARM_MPU=y |
|
|
|
# MPU-based null-pointer dereferencing detection cannot be applied |
|
# as the (0x0 - 0x400) region is unmapped for this target. |
|
CONFIG_NULL_POINTER_EXCEPTION_DETECTION_NONE=y |
|
|
|
# Enable cache |
|
CONFIG_CACHE_MANAGEMENT=y |
|
CONFIG_EXTERNAL_CACHE=y |
|
|
|
# Enable GPIO |
|
CONFIG_GPIO=y
|
|
|