Hi,
I'm using a TM4C129ENCPDT and I would like to obtain a CPU system clock of 100MHz.
The SysCtlClockFreqSet( ) allowed me to get close i.e. 96MHz using the following instruction
gSysCtlClock = SysCtlClockFreqSet(
SYSCTL_USE_PLL |
SYSCTL_OSC_MAIN |
SYSCTL_XTAL_25MHZ |
SYSCTL_CFG_VCO_480,
100000000); //desired system frequency
Looked more into the data sheets and apparently I need to change the PLL fvco frequency to get what I need (Mint = 16, Mfrac = 0, Q = 0, N = 0, PSYSDIV = 3).
Do you have an example code with the proper sequence of event that I could use to change the PLL fvco and thus set the system clock to 100MHz?
thanks.
Khaled.