1/* SPDX-License-Identifier: Apache-2.0 */
2
3/ {
4	chosen {
5		zephyr,console = &uart1;
6	};
7};
8
9&uart1 {
10	current-speed = <115200>;
11	status = "okay";
12	tx-pin = <6>;
13	rx-pin = <8>;
14	rts-pin = <0>;
15	cts-pin = <0>;
16};
17
18&uart0 {
19	compatible = "nordic,nrf-uarte";
20	current-speed = <115200>;
21	status = "okay";
22	tx-pin = <33>;
23	rx-pin = <34>;
24	rts-pin = <5>;
25	cts-pin = <7>;
26};
27