I need to implement a Real Time Clock and I want that clock to be updated even when the device is switched "off".
I understand the RTC is a Real Time Counter rather than a Real Time Clock (Why it had to be called aRTC I don't know).
Currently I have connected RTC and a low power timer via PPI; this runs fine in power up, but as soon as I call sd_power_system_off() I think this complex stops running.
So is it possible to put nrf52840 down into a really low power mode where the RTC and Timer are still running?
Currently I am coming out of system off on button presses; whilst in off state I am down to around 70uA; so there is "stuff" still running/consuming power.
Do I have a low power alternative to calling sd_power_system_off() that leaves RTC and Timer running; or is only solution to sit on a WFE/WFI and settle for whatever consumption I get on that instruction? What kind of power consumption would such a solution give me?