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>
20 lines
518 B
Plaintext
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"
|