Hello, we are trying to use a uart while minimizing power consumption. On this post
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;