1/*
2 * Copyright (c) 2022 Nordic Semiconductor
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6&pinctrl {
7	uart0_default: uart0_default {
8		group1 {
9			psels = <NRF_PSEL(UART_TX, 1, 8)>,
10				<NRF_PSEL(UART_RX, 1, 10)>,
11				<NRF_PSEL(UART_RTS, 1, 7)>,
12				<NRF_PSEL(UART_CTS, 1, 9)>;
13		};
14	};
15
16	uart0_sleep: uart0_sleep {
17		group1 {
18			psels = <NRF_PSEL(UART_TX, 1, 8)>,
19				<NRF_PSEL(UART_RX, 1, 10)>,
20				<NRF_PSEL(UART_RTS, 1, 7)>,
21				<NRF_PSEL(UART_CTS, 1, 9)>;
22			low-power-enable;
23		};
24	};
25
26};
27