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, 9)>, 10 <NRF_PSEL(UART_RX, 0, 11)>, 11 <NRF_PSEL(UART_RTS, 0, 8)>, 12 <NRF_PSEL(UART_CTS, 0, 10)>; 13 }; 14 }; 15 16 uart0_sleep: uart0_sleep { 17 group1 { 18 psels = <NRF_PSEL(UART_TX, 0, 9)>, 19 <NRF_PSEL(UART_RX, 0, 11)>, 20 <NRF_PSEL(UART_RTS, 0, 8)>, 21 <NRF_PSEL(UART_CTS, 0, 10)>; 22 low-power-enable; 23 }; 24 }; 25 26}; 27