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, 0, 5)>,
10				<NRF_PSEL(UART_RTS, 0, 7)>;
11		};
12		group2 {
13			psels = <NRF_PSEL(UART_RX, 0, 3)>,
14				<NRF_PSEL(UART_CTS, 1, 8)>;
15			bias-pull-up;
16		};
17	};
18
19	uart0_sleep: uart0_sleep {
20		group1 {
21			psels = <NRF_PSEL(UART_TX, 0, 5)>,
22				<NRF_PSEL(UART_RX, 0, 3)>,
23				<NRF_PSEL(UART_RTS, 0, 7)>,
24				<NRF_PSEL(UART_CTS, 1, 8)>;
25			low-power-enable;
26		};
27	};
28
29};
30