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