1# Copyright (c) 2024 STMicroelectronics
2#
3# SPDX-License-Identifier: Apache-2.0
4
5mainmenu "UART Async Test"
6
7source "Kconfig.zephyr"
8
9if DCACHE
10
11config DT_DEFINED_NOCACHE
12	bool "Enable this if a nocache region is defined in devicetree"
13
14if DT_DEFINED_NOCACHE
15
16config DT_DEFINED_NOCACHE_NAME
17	string "Name of the nocache region defined in devicetree (uppercase)"
18
19endif # DT_DEFINED_NOCACHE
20
21endif # DCACHE
22