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