Skip to content

Commit 2a17181

Browse files
nordic-pikskartben
authored andcommitted
tests: drivers: uart: uart_error: Add missing pull up for nrf53
Add missing pull up to the overlay file. Signed-off-by: Piotr Kosycarz <[email protected]>
1 parent b69c9c1 commit 2a17181

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tests/drivers/uart/uart_errors/boards/nrf5340dk_nrf5340_cpuapp.overlay

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,11 @@
33
&pinctrl {
44
uart1_default_alt: uart1_default_alt {
55
group1 {
6-
psels = <NRF_PSEL(UART_RX, 0, 4)>,
7-
<NRF_PSEL(UART_RTS, 0, 6)>;
6+
psels = <NRF_PSEL(UART_RX, 0, 4)>;
7+
bias-pull-up;
8+
};
9+
group2 {
10+
psels = <NRF_PSEL(UART_RTS, 0, 6)>;
811
};
912
};
1013

0 commit comments

Comments
 (0)