Skip to content

Commit 1934345

Browse files
nordic-piksrlubos
authored andcommitted
samples: peripheral: lpuart: nrf54l15 disconnect RTS/CTS
To limit power consumption. Signed-off-by: Piotr Kosycarz <[email protected]>
1 parent e134378 commit 1934345

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

samples/peripheral/lpuart/boards/nrf54l15dk_nrf54l15_cpuapp.overlay

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,19 @@
3434
&gpiote20 {
3535
status = "okay";
3636
};
37+
38+
&uart20_default {
39+
/* Disconnect CTS and RTS lines from pins.
40+
* This is a workaround for increased current consumption
41+
* (~250 uA more).
42+
*/
43+
group1 {
44+
psels = <NRF_PSEL(UART_TX, 1, 4)>,
45+
<NRF_PSEL_DISCONNECTED(UART_RTS)>;
46+
};
47+
group2 {
48+
psels = <NRF_PSEL(UART_RX, 1, 5)>,
49+
<NRF_PSEL_DISCONNECTED(UART_CTS)>;
50+
bias-pull-up;
51+
};
52+
};

0 commit comments

Comments
 (0)