Skip to content

Commit e367231

Browse files
nordic-krchnashif
authored andcommitted
drivers: uart: uart_elementary: Add missing pull-ups to nrf54h20dk
Add missing pull-up for RX pin in nrf54h20dk dual uart configuration. Lack of pull-up was causing test failures. Signed-off-by: Krzysztof Chruściński <[email protected]>
1 parent d5a91a2 commit e367231

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

tests/drivers/uart/uart_elementary/boards/nrf54h20dk_nrf54h20_cpuapp_dual_uart.overlay

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,11 @@
66
&pinctrl {
77
uart135_default_alt: uart135_default_alt {
88
group1 {
9-
psels = <NRF_PSEL(UART_TX, 0, 6)>,
10-
<NRF_PSEL(UART_RX, 0, 9)>;
9+
psels = <NRF_PSEL(UART_RX, 0, 9)>;
10+
bias-pull-up;
11+
};
12+
group2 {
13+
psels = <NRF_PSEL(UART_TX, 0, 6)>;
1114
};
1215
};
1316

@@ -32,8 +35,11 @@ dut: &uart135 {
3235
&pinctrl {
3336
uart137_default_alt: uart137_default_alt {
3437
group1 {
35-
psels = <NRF_PSEL(UART_TX, 0, 8)>,
36-
<NRF_PSEL(UART_RX, 0, 7)>;
38+
psels = <NRF_PSEL(UART_RX, 0, 7)>;
39+
bias-pull-up;
40+
};
41+
group2 {
42+
psels = <NRF_PSEL(UART_TX, 0, 8)>;
3743
};
3844
};
3945

0 commit comments

Comments
 (0)