zephyr/tests/subsys/logging/log_backend_uart/single.overlay
Yong Cong Sin 6d9fcd83a9 test: logging: add testcase for multi-instance log backend uart
Add testcase for the multi-instance log backend uart using
emulated uart.

Signed-off-by: Yong Cong Sin <ycsin@meta.com>
2023-11-13 09:47:06 +01:00

24 lines
366 B
Text

/*
* Copyright (c) 2023 Meta
*
* SPDX-License-Identifier: Apache-2.0
*/
/ {
chosen {
zephyr,log-uart = &log_uarts;
};
log_uarts: log_uarts {
compatible = "zephyr,log-uart";
uarts = <&euart0>;
};
euart0: uart-emul0 {
compatible = "zephyr,uart-emul";
status = "okay";
current-speed = <0>;
rx-fifo-size = <256>;
tx-fifo-size = <256>;
};
};