1/*
2 * Copyright (c) 2024 Analog Devices, Inc.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7dut: &uart0 {
8	status = "okay";
9	pinctrl-0 = <&uart0_tx_p0_9 &uart0_rx_p0_10>;
10	pinctrl-names = "default";
11
12	dmas = <&dma0 1 MAX32_DMA_SLOT_UART0_TX>, <&dma0 2 MAX32_DMA_SLOT_UART0_RX>;
13	dma-names = "tx", "rx";
14
15	current-speed = <115200>;
16	data-bits = <8>;
17	parity = "none";
18};
19