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