I have a problem with an 32-kHz oscillator (with external quartz). After start RTC (ROM_TimerRTCEnable(TIMER5_BASE)) I don't observe changing of timer value (I read value through ROM_TimerValueGet(TIMER5_BASE, TIMER_A)). If I looked at the osc pin of 32-kHz generator by oscilloscope I saw an absence of clock signal. Would I use some functions to start 32-kHz oscillator except my config (see below)?
ROM_SysCtlPeripheralEnable(SYSCTL_PERIPH_TIMER5);
ROM_TimerConfigure(TIMER5_BASE, TIMER_CFG_RTC);
ROM_TimerRTCEnable(TIMER5_BASE);
platform: Stellaris LM4F Launchpad, compiler IAR 6.50, latest version of Stellarisware.