zephyr/tests/drivers/uart/uart_async_api/Kconfig
Krzysztof Chruściński d612982b14 tests: drivers: uart: async_api: Make long buffer configurable
One of the test case is performing long transfers using 1k buffers.
For some targets there may be not enough RAM to perform such
transfers. Make long buffer length configurable.

Signed-off-by: Krzysztof Chruściński <krzysztof.chruscinski@nordicsemi.no>
2024-10-25 08:53:15 +02:00

25 lines
474 B
Text

# Copyright (c) 2024 STMicroelectronics
#
# SPDX-License-Identifier: Apache-2.0
mainmenu "UART Async Test"
source "Kconfig.zephyr"
if DCACHE
config DT_DEFINED_NOCACHE
bool "Enable this if a nocache region is defined in devicetree"
if DT_DEFINED_NOCACHE
config DT_DEFINED_NOCACHE_NAME
string "Name of the nocache region defined in devicetree (uppercase)"
endif # DT_DEFINED_NOCACHE
endif # DCACHE
config TEST_LONG_BUFFER_SIZE
int "Long buffer size"
default 1024