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>
25 lines
474 B
Text
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
|