Hello,
I think, some of the examples provided with the driverlib call the CS_startLFXT() with wrong parameters:
- rtc_c_calendar_alarm_interrupt.c
- cs_lfxt_start.c
are using
/* Starting LFXT in non-bypass mode without a timeout. */ CS_startLFXT(false);
instead of
/* Starting LFXT */ CS_startLFXT(CS_LFXT_DRIVE3);
like it's used in pcm_lpm35_rtc_wakeup.c
According to the documentation, the parameter should be the DRIVE or BYPASS selection for the LFXT.
Regards, Leo