Hello,
I am trying to send RTC signal from EVM5515 to another device. I have connected the oscilloscope with TP8 (RTC CLKOUT) but i cannot see the 32.768 KHz signal.
My clock configuration is the next:
void Init_Clock(void)
{
//Enable clocks to all peripherals
PCGCR1 = 0x0000;
PCGCR2 = 0x0000;
CCR2 = 0x0000; //Bypass Mode RTC
CGCR1 = 0x84FC; //1280*32768=41,943,040 Hz
CGCR2 = 0x8000; //Bypass reference divider
CGCR3 = 0x0806; //Testing Purposes
CGCR4 = 0x0000; //Bypass divider
while((CGCR3 & 0x0008) == 0);
CCR2 = 0x0001; // PLL Mode
}
Any help please. Thank you!