zephyr/tests/drivers/uart/uart_async_api/Kconfig
Piotr Kosycarz 67eb03c52c tests: drivers: uart: uart_async_api: test short buffers
Extend testing with short buffers.
Try different lengths of transmitted data.

Signed-off-by: Piotr Kosycarz <piotr.kosycarz@nordicsemi.no>
2025-05-15 22:14:08 +02:00

34 lines
756 B
Plaintext

# 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
config VAR_LENGTH_BUFFER_TEST_BUADRATE_LIMIT
int "Above this UART baudrate value, var length buffer testing will be skipped"
default 230400
config VAR_LENGTH_BUFFER_MAX_SIZE
int "Max size of uart buffer used for testing. Testing buffer sizes from 1 to this value."
default 10