This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

How to power down the UART on nrf52832

Hello, we are trying to use a uart while minimizing power consumption.  On this post

https://devzone.nordicsemi.com/f/nordic-q-a/26030/how-to-reach-nrf52840-uarte-current-supply-specification/102605#102605

It's said that the way to shut off uart and all clocks, etc, to minimize power consumption you need to run the register assigments below after closing the uart.

But this is for the nrf52840. What is the equivalent code on the nrf52832?

Also, is this still necessary? Or has it been resolved?

Thanks.

uart_close();
*(volatile uint32_t *)0x40002FFC = 0; *(volatile uint32_t *)0x40002FFC; *(volatile uint32_t *)0x40002FFC = 1;


Related