1/* 2 * Copyright (c) 2022 Nordic Semiconductor 3 * SPDX-License-Identifier: Apache-2.0 4 */ 5 6&pinctrl { 7 i2c0_default: i2c0_default { 8 group1 { 9 psels = <NRF_PSEL(TWIM_SDA, 0, 26)>, 10 <NRF_PSEL(TWIM_SCL, 0, 27)>; 11 }; 12 }; 13 14 i2c0_sleep: i2c0_sleep { 15 group1 { 16 psels = <NRF_PSEL(TWIM_SDA, 0, 26)>, 17 <NRF_PSEL(TWIM_SCL, 0, 27)>; 18 low-power-enable; 19 }; 20 }; 21 22 spi2_default: spi2_default { 23 group1 { 24 psels = <NRF_PSEL(SPIM_SCK, 0, 19)>, 25 <NRF_PSEL(SPIM_MOSI, 0, 20)>, 26 <NRF_PSEL(SPIM_MISO, 0, 21)>; 27 }; 28 }; 29 30 spi2_sleep: spi2_sleep { 31 group1 { 32 psels = <NRF_PSEL(SPIM_SCK, 0, 19)>, 33 <NRF_PSEL(SPIM_MOSI, 0, 20)>, 34 <NRF_PSEL(SPIM_MISO, 0, 21)>; 35 low-power-enable; 36 }; 37 }; 38 39 uart0_default: uart0_default { 40 group1 { 41 psels = <NRF_PSEL(UART_TX, 0, 6)>, 42 <NRF_PSEL(UART_RX, 0, 8)>; 43 }; 44 }; 45 46 uart0_sleep: uart0_sleep { 47 group1 { 48 psels = <NRF_PSEL(UART_TX, 0, 6)>, 49 <NRF_PSEL(UART_RX, 0, 8)>; 50 low-power-enable; 51 }; 52 }; 53 54}; 55