Hi,
I am working on low power mode with DK to apply optimization to our project.
And I verified DK with ble_uart_app can go down to less than 5uA in system on mode which is good result. (current consumption was measured at P27 Li-Po 3.0v)
(https://devzone.nordicsemi.com/f/nordic-q-a/52921/low-power-system-on-mode-in-ble_uart_app)
Also it can go down to similar level with our customized app and uart0 disabled and RTC2 disabled. (uarte0 for debug log and commands from PC, RTC2 for our os time)
Here are some questions.
#1. In system on mode, if I keep uarte0 on, it raises current by around 180uA. Then for low power, it needs to be off.
However, our device should wake up by PC commands via uart even in sleep mode (system on).
Could you recommend something to try to lower power with keeping uart alive which is available to wake up by uart trigger?
If so, could you let know some example for it?
#2. I am using 32768 Hz for RTC2 prescaler and RTC2 also adds up the current hundreds of uA in system on mode.
And when I change prescaler to lower freqeuncy, it can go down to less than 5uA.
But our os time code still needs to use full scale so I am considering like using RTC2 with full scale in normal mode and turing off RTC2 in system on mode after saving tickcount , start app_timer with low prescaler and then udpating rtc tick with sleep time when device wakes up.Does it make sense? or Could you recommend some better way?
Thank you.