Hi,
https://devzone.nordicsemi.com/f/nordic-q-a/27147/how-to-configure-uart-with-low-power
https://devzone.nordicsemi.com/f/nordic-q-a/47578/nrf52832-uart-power-consumption
https://devzone.nordicsemi.com/f/nordic-q-a/43684/why-is-uart-without-dma-deprecated
https://devzone.nordicsemi.com/f/nordic-q-a/19284/turn-off-uart-on-nrf52832
After referring to number of low power UART discussions above I still have a question, Is there any direct low power UART example which demonstrates the electrical character as specified in Datasheet.(Just for nrf52xxx DK)
I was trying to optimize power for my app(link) which was initially consuming 6mA/1mA for Adv/Conn. After Enabling DCDC it was around 600uA/540uA or Adv/Conn.
After Just disabling UART it was just 100uA/60uA for Adv/Conn, so the UART alone consume 500uA. After all read through I disabled EasyDMA and removed UARTE(Used UART) and saved ~150uA.
So my total power now is around 435uA/360uA for Adv/Conn. After which I thought enabling Hardware flow control may save me more power, but surprisingly the current increased by 70-150uA after enabling HFC. I don't understand why.
To be precise, the answer I'm looking for is: How do I Enable and Disable UART with Respect to RTS/CTS so that reduce active UART time and save power.