Part Number: TMS320F280041C
Tool/software:
Greetings! I am using this chip for a very first time and it seems I have made a mistake in the oscillator setup. I have 10MHz external crystal and I am using this settings ->
// PLLSYSCLK = 10MHz (XTAL_OSC) * 20 (IMULT) * 1 (FMULT) / 2 (PLLCLK_BY_2)
SysCtl_setClock(SYSCTL_OSCSRC_XTAL |
SYSCTL_IMULT(20) |
SYSCTL_FMULT_NONE |
SYSCTL_SYSDIV(2) |
SYSCTL_PLL_ENABLE);
It seems these are incorrect settings and I have problems with the SCI module. If I try to enter this settings in an example like sci_ex2_interrupts the F280041C can`t init.
Can you tell me in which datasheet I can find info about these settings and in what range they can vary? Or what mistake I have done?
Thanks!