1/* SPDX-License-Identifier: Apache-2.0 */ 2 3&pinctrl { 4 uart137_default_alt: uart137_default_alt { 5 group1 { 6 psels = <NRF_PSEL(UART_TX, 0, 6)>, 7 <NRF_PSEL(UART_RX, 0, 7)>, 8 <NRF_PSEL(UART_RTS, 0, 8)>, 9 <NRF_PSEL(UART_CTS, 0, 9)>; 10 }; 11 }; 12 13 uart137_sleep_alt: uart137_sleep_alt { 14 group1 { 15 psels = <NRF_PSEL(UART_TX, 0, 6)>, 16 <NRF_PSEL(UART_RX, 0, 7)>, 17 <NRF_PSEL(UART_RTS, 0, 8)>, 18 <NRF_PSEL(UART_CTS, 0, 9)>; 19 low-power-enable; 20 }; 21 }; 22}; 23 24dut: &uart137 { 25 status = "okay"; 26 pinctrl-0 = <&uart137_default_alt>; 27 pinctrl-1 = <&uart137_sleep_alt>; 28 pinctrl-names = "default", "sleep"; 29 current-speed = <115200>; 30 hw-flow-control; 31}; 32 33/* Use timer137 as only this one can generate interrupts on cpusys. */ 34counter_dev: &timer137 { 35 status = "okay"; 36}; 37