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