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
23config TEST_LONG_BUFFER_SIZE
24	int "Long buffer size"
25	default 1024
26
27config VAR_LENGTH_BUFFER_TEST_BUADRATE_LIMIT
28	int "Above this UART baudrate value, var length buffer testing will be skipped"
29	default 230400
30
31config VAR_LENGTH_BUFFER_MAX_SIZE
32	int "Max size of uart buffer used for testing. Testing buffer sizes from 1 to this value."
33	default 10
34