Commit 869aee9c authored by Seppo Takalo's avatar Seppo Takalo Committed by Carles Cufi
Browse files

boards: arm: nrf9160dk_nrf52840: flow control pins crossed



Devicetree pinout was written according to datasheet,
but RX and TX were crossed because labels in the datasheet
are written from debug interface point of view.
However, it seems that flow control pins were not crossed.

Fixes #54768

Signed-off-by: default avatarSeppo Takalo <seppo.takalo@nordicsemi.no>
parent b1d74e42
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -7,11 +7,11 @@
	uart0_default: uart0_default {
		group1 {
			psels = <NRF_PSEL(UART_TX, 0, 5)>,
				<NRF_PSEL(UART_RTS, 1, 8)>;
				<NRF_PSEL(UART_RTS, 0, 7)>;
		};
		group2 {
			psels = <NRF_PSEL(UART_RX, 0, 3)>,
				<NRF_PSEL(UART_CTS, 0, 7)>;
				<NRF_PSEL(UART_CTS, 1, 8)>;
			bias-pull-up;
		};
	};
@@ -20,8 +20,8 @@
		group1 {
			psels = <NRF_PSEL(UART_TX, 0, 5)>,
				<NRF_PSEL(UART_RX, 0, 3)>,
				<NRF_PSEL(UART_RTS, 1, 8)>,
				<NRF_PSEL(UART_CTS, 0, 7)>;
				<NRF_PSEL(UART_RTS, 0, 7)>,
				<NRF_PSEL(UART_CTS, 1, 8)>;
			low-power-enable;
		};
	};