I am using C28343 kit. I have chosen control28346 as a platform. I cannot run at 300 Mhz so I inform the bios via my .cfg file that the cpu frequency is 200 Mhz. Here are the two line in the *.cfg file of my project.
BIOS.cpuFreq.lo = 200000000;
Clock.tickPeriod = 10;
When I toggle a GPIO using the clock module I clearly see that the clock module is still taking 300 Mhz as the frequency because I see the square wave with 15 uSec ON and OFF time instead of 10.
I have taken care of the PLL by extra hardware code so that it runs at 200 Mhz.
What am I doing wrong ?