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, 8)>, 10 <NRF_PSEL(UART_RX, 0, 7)>; 11 }; 12 }; 13 14 uart0_sleep: uart0_sleep { 15 group1 { 16 psels = <NRF_PSEL(UART_TX, 0, 8)>, 17 <NRF_PSEL(UART_RX, 0, 7)>; 18 low-power-enable; 19 }; 20 }; 21 22 i2c0_default: i2c0_default { 23 group1 { 24 psels = <NRF_PSEL(TWIM_SDA, 0, 5)>, 25 <NRF_PSEL(TWIM_SCL, 0, 6)>; 26 }; 27 }; 28 29 i2c0_sleep: i2c0_sleep { 30 group1 { 31 psels = <NRF_PSEL(TWIM_SDA, 0, 5)>, 32 <NRF_PSEL(TWIM_SCL, 0, 6)>; 33 low-power-enable; 34 }; 35 }; 36 37 spi1_default: spi1_default { 38 group1 { 39 psels = <NRF_PSEL(SPIM_SCK, 0, 31)>, 40 <NRF_PSEL(SPIM_MOSI, 0, 29)>, 41 <NRF_PSEL(SPIM_MISO, 1, 1)>; 42 }; 43 }; 44 45 spi1_sleep: spi1_sleep { 46 group1 { 47 psels = <NRF_PSEL(SPIM_SCK, 0, 31)>, 48 <NRF_PSEL(SPIM_MOSI, 0, 29)>, 49 <NRF_PSEL(SPIM_MISO, 1, 1)>; 50 low-power-enable; 51 }; 52 }; 53 54 pwm0_default: pwm0_default { 55 group1 { 56 psels = <NRF_PSEL(PWM_OUT0, 0, 13)>, 57 <NRF_PSEL(PWM_OUT1, 0, 14)>, 58 <NRF_PSEL(PWM_OUT2, 0, 15)>; 59 nordic,invert; 60 }; 61 }; 62 63 pwm0_sleep: pwm0_sleep { 64 group1 { 65 psels = <NRF_PSEL(PWM_OUT0, 0, 13)>, 66 <NRF_PSEL(PWM_OUT1, 0, 14)>, 67 <NRF_PSEL(PWM_OUT2, 0, 15)>; 68 low-power-enable; 69 }; 70 }; 71 72}; 73