1/*
2 * Copyright (c) 2024 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7&pinctrl {
8	uart21_default: uart21_default {
9		group1 {
10			psels = <NRF_PSEL(UART_TX, 1, 10)>,
11				<NRF_PSEL(UART_RX, 1, 11)>,
12				<NRF_PSEL(UART_RTS, 1, 8)>,
13				<NRF_PSEL(UART_CTS, 1, 9)>;
14		};
15	};
16
17	uart21_sleep: uart21_sleep {
18		group1 {
19			psels = <NRF_PSEL(UART_TX, 1, 10)>,
20				<NRF_PSEL(UART_RX, 1, 11)>,
21				<NRF_PSEL(UART_RTS, 1, 8)>,
22				<NRF_PSEL(UART_CTS, 1, 9)>;
23			low-power-enable;
24		};
25	};
26};
27
28dut: &uart21 {
29	status = "okay";
30	current-speed = <115200>;
31	pinctrl-0 = <&uart21_default>;
32	pinctrl-1 = <&uart21_sleep>;
33	pinctrl-names = "default", "sleep";
34	hw-flow-control;
35};
36
37counter_dev: &timer00 {
38	status = "okay";
39};
40
41&grtc {
42	interrupts = <228 2>;
43};
44