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, 3)>,
10				<NRF_PSEL(UART_RX, 0, 2)>;
11		};
12	};
13
14	uart0_sleep: uart0_sleep {
15		group1 {
16			psels = <NRF_PSEL(UART_TX, 0, 3)>,
17				<NRF_PSEL(UART_RX, 0, 2)>;
18			low-power-enable;
19		};
20	};
21
22	i2c0_default: i2c0_default {
23		group1 {
24			psels = <NRF_PSEL(TWIM_SDA, 0, 7)>,
25				<NRF_PSEL(TWIM_SCL, 0, 8)>;
26		};
27	};
28
29	i2c0_sleep: i2c0_sleep {
30		group1 {
31			psels = <NRF_PSEL(TWIM_SDA, 0, 7)>,
32				<NRF_PSEL(TWIM_SCL, 0, 8)>;
33			low-power-enable;
34		};
35	};
36
37	i2c1_default: i2c1_default {
38		group1 {
39			psels = <NRF_PSEL(TWIM_SDA, 0, 14)>,
40				<NRF_PSEL(TWIM_SCL, 0, 15)>;
41		};
42	};
43
44	i2c1_sleep: i2c1_sleep {
45		group1 {
46			psels = <NRF_PSEL(TWIM_SDA, 0, 14)>,
47				<NRF_PSEL(TWIM_SCL, 0, 15)>;
48			low-power-enable;
49		};
50	};
51
52};
53