We interfaced the MSP432E401Y with a GPS module. We need to periodically synchronize the RTC clock with GPS (with GPS PPS interrupts) down to millisecond resolution. We configured RTC to RTC CALENDAR mode. Based on Peripheral Driver Library User's Guide, we can use HibernateRTCSSGet() to get sub-second counter values and HibernateCalendarSet(&rtcnow) to set the time down to second resolution. We wish to reset the sub-second counter value to 0, but we did not find any API from the Peripheral Driver Library User's Guide to do that. My question is:
1) Does the sub-second counter drives the RTC Calendar seconds counter, or they are synchronized?
2) How can I reset the sub-second counter value?
Thanks