1/* 2 * Copyright (c) 2021 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7&pinctrl { 8 uart1_default_alt: uart1_default_alt { 9 group1 { 10 psels = <NRF_PSEL(UART_TX, 0, 18)>, 11 <NRF_PSEL(UART_RX, 0, 17)>, 12 <NRF_PSEL(UART_RTS, 0, 21)>, 13 <NRF_PSEL(UART_CTS, 0, 19)>; 14 }; 15 }; 16 17 uart1_sleep_alt: uart1_sleep_alt { 18 group1 { 19 psels = <NRF_PSEL(UART_TX, 0, 18)>, 20 <NRF_PSEL(UART_RX, 0, 17)>, 21 <NRF_PSEL(UART_RTS, 0, 21)>, 22 <NRF_PSEL(UART_CTS, 0, 19)>; 23 low-power-enable; 24 }; 25 }; 26 27}; 28 29&uart1 { 30 status = "okay"; 31 pinctrl-0 = <&uart1_default_alt>; 32 pinctrl-1 = <&uart1_sleep_alt>; 33 pinctrl-names = "default", "sleep"; 34}; 35