1/* 2 * Copyright (c) 2024 Luis Ubieda 3 * SPDX-License-Identifier: Apache-2.0 4 */ 5 6&pinctrl { 7 8 i2c0_default: i2c0_default { 9 group1 { 10 psels = <NRF_PSEL(TWIM_SDA, 0, 27)>, 11 <NRF_PSEL(TWIM_SCL, 0, 26)>; 12 }; 13 }; 14 15 i2c0_sleep: i2c0_sleep { 16 group1 { 17 psels = <NRF_PSEL(TWIM_SDA, 0, 27)>, 18 <NRF_PSEL(TWIM_SCL, 0, 26)>; 19 low-power-enable; 20 }; 21 }; 22 23 pwm0_default: pwm0_default { 24 group1 { 25 psels = <NRF_PSEL(PWM_OUT0, 1, 8)>; 26 }; 27 }; 28 29 pwm0_sleep: pwm0_sleep { 30 group1 { 31 psels = <NRF_PSEL(PWM_OUT0, 1, 8)>; 32 low-power-enable; 33 }; 34 }; 35}; 36