1/*
2 * Copyright (c) 2023 Meta
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/ {
8	chosen {
9		zephyr,log-uart = &log_uarts;
10	};
11
12	log_uarts: log_uarts {
13		compatible = "zephyr,log-uart";
14		uarts = <&euart0>;
15	};
16
17	euart0: uart-emul0 {
18		compatible = "zephyr,uart-emul";
19		status = "okay";
20		current-speed = <0>;
21		rx-fifo-size = <256>;
22		tx-fifo-size = <256>;
23	};
24};
25