33 lines
526 B
Plaintext
33 lines
526 B
Plaintext
|
/*
|
||
|
* 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 &euart1>;
|
||
|
};
|
||
|
|
||
|
euart0: uart-emul0 {
|
||
|
compatible = "zephyr,uart-emul";
|
||
|
status = "okay";
|
||
|
current-speed = <0>;
|
||
|
rx-fifo-size = <256>;
|
||
|
tx-fifo-size = <256>;
|
||
|
};
|
||
|
|
||
|
euart1: uart-emul1 {
|
||
|
compatible = "zephyr,uart-emul";
|
||
|
status = "okay";
|
||
|
current-speed = <0>;
|
||
|
rx-fifo-size = <256>;
|
||
|
tx-fifo-size = <256>;
|
||
|
};
|
||
|
};
|