zephyr/tests/drivers/uart/uart_elementary/Kconfig
Raffael Rostagno 31ea95fb52 tests: uart_basic_api: uart_elementary: Get baudrate from device tree
Add option (BAUDRATE_FROM_DTS) to get baudrate value from
device tree, for devices which differ from standard (115200).

Signed-off-by: Raffael Rostagno <raffael.rostagno@espressif.com>
2024-12-19 19:56:06 +01:00

20 lines
518 B
Plaintext

# UART test configuration options
# Copyright (c) 2024 Nordic Semiconductor ASA
# SPDX-License-Identifier: Apache-2.0
config DUAL_UART_TEST
bool "Enable dual UART test"
config SETUP_MISMATCH_TEST
bool "Enable mismatched configuration in dual UART test"
config UART_BAUDRATE_MISMATCH
int "UART baudrate for DUT_AUX to test mismatch case"
depends on SETUP_MISMATCH_TEST
default 9600
help
UART baudrate for DUT_AUX that is intentionally different from DUT
to test error detection.
source "Kconfig.zephyr"