cancel
Showing results for 
Search instead for 
Did you mean: 

Detect that RTC on vbat is no longer valid after a power-loss

Daniel Moberg
Associate II
Posted on June 14, 2018 at 08:54

Hi,

I have a STM32F769ni target, Which have a super-cap connected to vbat for keeping track of time when we get a powerloss.

How would i know (in code) that the vbat has been running low (below 1.65V in my case) and therefore the time is no longer correct when starting up again?

#stm32f769ni
4 REPLIES 4
Tilen MAJERLE
ST Employee
Posted on June 14, 2018 at 09:40

Hello

dmo

‌,

when you are back in 'normal operation' (non-Vbat), you may use ADC and Vbat internal channel to measure itsvoltage.

Best regards,

Tilen

Posted on June 14, 2018 at 10:19

Below some voltage, a Backup Domain Reset occurs. So I use RCC_BDCR.LSEON bit for this purpose; any bit which is reset by Backup Domain Reset will do. You should also see the clock to be stopped and reset. ST likes to use a mägic number in one of RTC_BKPxR, these are guaranteed to be reset to 0x00000000 upon Backup Domain Reset.

However, there may be a gray area where the voltage is too low so LSE stops but it won't reset yet. This of course depends on the particularities of the LSE circuit (crystal, caps, parasitics - layout, EMI - surrounding circuitry, even mechanical vibrations as that influences the crystal), so it's hard to impossible to characterize completely. You may want to work towards eliminating this area by improving the LSE circuit.

Any attempt for a 'safer' method than this entirely implemented in the mcu (e.g. waking up periodically and measuring the remaining voltage on the supercap) costs considerable amounts of energy thus shortens the backup span.

Other method at the expense of external circuitry may be to use a low-leakage capacitor charged from the supercap's voltage through and isolation switch (mosfet), in parallel with a resistor representing the RTC consumption. The isolation would be switched from a mcu pin, so when primary power fails, the capacitor is isolated from the supercap, and starts to discharge. A comparator then could be used to determine whether there's been enough power left in the capacitor (thus also in the supercap) at the moment when primary power is restored.

JW

Daniel Moberg
Associate II
Posted on June 14, 2018 at 10:23

Hi Tilen,

Thanks for you answer, Is there no more direct way of knowing the status of the RTC?

What i want to know is if i can trust the time after some time of power down. 

Kind Regards

Daniel Moberg

Pevy.Andy
Associate III
Posted on June 14, 2018 at 10:34

This fragment of code works on the L486

if((RTC->ISR & RTC_ISR_INITS) == (uint32_t)RESET)

{

}

Andy