1/* SPDX-License-Identifier: Apache-2.0 */
2
3&pinctrl {
4	uart21_default: uart21_default {
5		group1 {
6			psels = <NRF_PSEL(UART_TX, 1, 10)>,
7				<NRF_PSEL(UART_RX, 1, 11)>,
8				<NRF_PSEL(UART_RTS, 1, 8)>,
9				<NRF_PSEL(UART_CTS, 1, 9)>;
10		};
11	};
12
13	uart21_sleep: uart21_sleep {
14		group1 {
15			psels = <NRF_PSEL(UART_TX, 1, 10)>,
16				<NRF_PSEL(UART_RX, 1, 11)>,
17				<NRF_PSEL(UART_RTS, 1, 8)>,
18				<NRF_PSEL(UART_CTS, 1, 9)>;
19			low-power-enable;
20		};
21	};
22};
23
24dut: &uart21 {
25	status = "okay";
26	current-speed = <115200>;
27	pinctrl-0 = <&uart21_default>;
28	pinctrl-1 = <&uart21_sleep>;
29	pinctrl-names = "default", "sleep";
30	hw-flow-control;
31};
32