I have the following code on TM4C129ENCZAD:
// Set the clocking to run directly from the external crystal/oscillator. 12 MHz external oscillator
setclock = SysCtlClockFreqSet(SYSCTL_XTAL_12MHZ | SYSCTL_USE_OSC | SYSCTL_OSC_MAIN, 12000000);
SystemClock = SysCtlClockGet();
The hardware has an 12 MHz oscillator connected to OSC0 and OSC1
Upon executing the code setclock is set to 12000000 and SystemClock is set to 9600000.
What does this mean? My intent is to have a system clock directly from the oscillator at 12 MHz. I don't want to use the PLL.