Hello,
Is it possible to use the RTC, while the unit is powered up if no 32768hz crystal is attached to the microcontroller?
I have tried:
MAP_SysCtlPeripheralEnable(SYSCTL_PERIPH_HIBERNATE); // hibernate module setup while(!MAP_SysCtlPeripheralReady(SYSCTL_PERIPH_HIBERNATE)) {} MAP_HibernateClockConfig(HIBERNATE_OSC_LFIOSC); MAP_HibernateRTCEnable()
But system hangs. If I use
MAP_HibernateClockConfig(HIBERNATE_OSC_LOWDRIVE);
instead of the OSC_LFIOSC then system does not hang, but RTC does not count neither.
Best regards,
C.