Commit 2a171815 authored by Piotr Kosycarz's avatar Piotr Kosycarz Committed by Benjamin Cabé
Browse files

tests: drivers: uart: uart_error: Add missing pull up for nrf53



Add missing pull up to the overlay file.

Signed-off-by: default avatarPiotr Kosycarz <piotr.kosycarz@nordicsemi.no>
parent b69c9c1f
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -3,8 +3,11 @@
&pinctrl {
	uart1_default_alt: uart1_default_alt {
		group1 {
			psels = <NRF_PSEL(UART_RX, 0, 4)>,
				<NRF_PSEL(UART_RTS, 0, 6)>;
			psels = <NRF_PSEL(UART_RX, 0, 4)>;
				bias-pull-up;
		};
		group2 {
			psels = <NRF_PSEL(UART_RTS, 0, 6)>;
		};
	};