Hello.
We have designed our custom board implementing a 12.5MHz external oscillator clock (not crystal). We are facing some issues configuring the clocktree (we think because of DCC system).
We are using this setup:
InitSysPll(XTAL_OSC_SE, SYS_IMULT, SYS_REFDIV, SYS_ODIV, SYS_DIV, SYSCTL_DCC_BASE0); with //12.5MHz #define SYS_IMULT IMULT_32 #define SYS_REFDIV REFDIV_1 #define SYS_ODIV ODIV_1 #define SYS_DIV PLLCLK_BY_2
We are having doubts with the IsPLLValid and VerifyXTAL(OSC_FREQ) calls.
On the other hand, we have used a F28379D with the same setup on the same board, with no issues using the old:
InitSysPll(XTAL_OSC,IMULT_32,FMULT_0,PLLCLK_BY_2);
How should we write our InitSysCtrl function?
Thank you