1/* 2 * Copyright (c) 2022 Nordic Semiconductor 3 * SPDX-License-Identifier: Apache-2.0 4 */ 5 6&pinctrl { 7 spi1_default: spi1_default { 8 group1 { 9 psels = <NRF_PSEL(SPIM_SCK, 0, 19)>, 10 <NRF_PSEL(SPIM_MOSI, 0, 20)>, 11 <NRF_PSEL(SPIM_MISO, 0, 21)>; 12 }; 13 }; 14 15 spi1_sleep: spi1_sleep { 16 group1 { 17 psels = <NRF_PSEL(SPIM_SCK, 0, 19)>, 18 <NRF_PSEL(SPIM_MOSI, 0, 20)>, 19 <NRF_PSEL(SPIM_MISO, 0, 21)>; 20 low-power-enable; 21 }; 22 }; 23 24}; 25