Part Number: LAUNCHXL-F28379D
Other Parts Discussed in Thread: SYSBIOS
Tool/software: TI-RTOS
Hi all,
I would like to setup the system clock on F28379D launchpad. I would like to understand the difference of the following setup methods (I am using sysbios)
1. In the main function, before Bios_start() is called, call InitSysPll(XTAL_OSC,IMULT_40,FMULT_0,PLLCLK_BY_2). It configs using external oscillator and the system clock is 200 MHz.
2. In the RTOS config file, create the instance of boot and config boot as follows to config system clock as 200 MHz.
BIOS.cpuFreq.lo = 200000000;
Boot.OSCCLK = 10;
Boot.SPLLIMULT = 40;
Boot.SYSCLKDIVSEL = 1;
3. In the project property debug flash setting, config the clock as follows. It seems like I cannot config it at 200 MHz during debug?