I'm working on a wristwatch project and why not to use the RTC right?
So I'm using the driverlib to interface with the RTC, and just found out that the RTC interrupts minimally at minute. I want to capture one second intervals.
I know the alternative is TMR interrupts, but I'm not sure they will always be synchronized.
i.e.: Imagine I have 3 hands actuated by stepper motors, one for hours, one for minutes and one for seconds. If I use TMR_A 1-sec interrupts to move the seconds hand, can I use RTC_A to interrupt on minutes and hours? Is it guaranteed they will be always in sync?