Skip to content

Commit 086ce45

Browse files
committed
[nrf noup] boot/zephyr/nrf_cleanup: cleanup uarte pins
Added procedure which does configure UARTE pins to the default states. This allows to reduce power consumption if pin is floating. clean-up UARTE only if its driver was enabled Signed-off-by: Andrzej Puzdrowski <[email protected]>
1 parent 148712e commit 086ce45

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

boot/zephyr/nrf_cleanup.c

+16
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
#include <hal/nrf_clock.h>
88
#include <hal/nrf_uarte.h>
99
#include <haly/nrfy_uarte.h>
10+
#include <haly/nrfy_gpio.h>
1011
#if defined(NRF_RTC0) || defined(NRF_RTC1) || defined(NRF_RTC2)
1112
#include <hal/nrf_rtc.h>
1213
#endif
@@ -92,6 +93,21 @@ void nrf_cleanup_peripheral(void)
9293
nrfy_uarte_event_clear(current, NRF_UARTE_EVENT_RXTO);
9394
nrfy_uarte_disable(current);
9495

96+
uint32_t pin[4];
97+
98+
pin[0] = nrfy_uarte_tx_pin_get(current);
99+
pin[1] = nrfy_uarte_rx_pin_get(current);
100+
pin[2] = nrfy_uarte_rts_pin_get(current);
101+
pin[3] = nrfy_uarte_cts_pin_get(current);
102+
103+
nrfy_uarte_pins_disconnect(current);
104+
105+
for (int j = 0; j < 4; j++) {
106+
if (pin[j] != NRF_UARTE_PSEL_DISCONNECTED) {
107+
nrfy_gpio_cfg_default(pin[i]);
108+
}
109+
}
110+
95111
#if defined(NRF_DPPIC)
96112
/* Clear all SUBSCRIBE configurations. */
97113
memset((uint8_t *)current + NRF_UARTE_SUBSCRIBE_CONF_OFFS, 0,

0 commit comments

Comments
 (0)