Skip to content

Commit fe8b9fd

Browse files
nordic-krchnordicjm
authored andcommitted
boards: nordic: nrf54lv10dk: Use pull-up for TX, RTS in sleep state
Even in sleep state TX and RTS should have pull as otherwise pins are floating and can give corrupted output on the console. Signed-off-by: Krzysztof Chruściński <[email protected]>
1 parent a520592 commit fe8b9fd

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

boards/nordic/nrf54lv10dk/nrf54lv10dk_nrf54lv10a-pinctrl.dtsi

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,13 @@
4343
/omit-if-no-ref/ uart30_sleep: uart30_sleep {
4444
group1 {
4545
psels = <NRF_PSEL(UART_TX, 0, 0)>,
46-
<NRF_PSEL(UART_RX, 0, 1)>,
47-
<NRF_PSEL(UART_RTS, 0, 2)>,
46+
<NRF_PSEL(UART_RTS, 0, 2)>;
47+
low-power-enable;
48+
bias-pull-up;
49+
};
50+
51+
group2 {
52+
psels = <NRF_PSEL(UART_RX, 0, 1)>,
4853
<NRF_PSEL(UART_CTS, 0, 3)>;
4954
low-power-enable;
5055
};

0 commit comments

Comments
 (0)