Skip to content

Commit

Permalink
samples: peripheral: lpuart: nrf54l15 disconnect RTS/CTS
Browse files Browse the repository at this point in the history
To limit power consumption.

Signed-off-by: Piotr Kosycarz <[email protected]>
  • Loading branch information
nordic-piks authored and rlubos committed Nov 19, 2024
1 parent e134378 commit 1934345
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,19 @@
&gpiote20 {
status = "okay";
};

&uart20_default {
/* Disconnect CTS and RTS lines from pins.
* This is a workaround for increased current consumption
* (~250 uA more).
*/
group1 {
psels = <NRF_PSEL(UART_TX, 1, 4)>,
<NRF_PSEL_DISCONNECTED(UART_RTS)>;
};
group2 {
psels = <NRF_PSEL(UART_RX, 1, 5)>,
<NRF_PSEL_DISCONNECTED(UART_CTS)>;
bias-pull-up;
};
};

0 comments on commit 1934345

Please sign in to comment.