Please will you look at the following clock configuration questions.
1) I want to run the device at 120MHz using the internal PIOSC. I use the following API call:
g_clock_freq_hz = SysCtlClockFreqSet( SYSCTL_OSC_INT | SYSCTL_USE_PLL | SYSCTL_CFG_VCO_480, 120000000 );
The parameters:
//! - \b SYSCTL_CFG_VCO_480 to set the PLL VCO output to 480-MHz
//! - \b SYSCTL_CFG_VCO_320 to set the PLL VCO output to 320-MHz
a) What do these do?
b) which should we use?
c) is the above API call correct?
2) Is the max frequency supported by the internal PIOSC and PLL 120MHz?
3) What are the advantages of the an external OSC over the internal PIOSC?
4) Are there any issues you can see with using the internal OSC to run the device via the PLL at high frequencies, eg 120MHz?
Thanks.