Part Number: LAUNCHXL-F280049C
Tool/software: Code Composer Studio
i actually want to create a ramp of freqency around 200 khz where i am able to change frequency ,slope offset according to my need . i actually tried a logic using a buffer and cpu timer but this is only suitable for lower frequency.
the logic is as follow
ConfigCpuTimer(&CpuTimer0, 100, 0.02);
__interrupt void cpuTimer0ISR()
{
CpuTimer0.InterruptCount++;
A[S]=S;
S=S+1;
if (S>=100){
S=0;
}
}
so kindly help me for the generation of variable ramp of freq 200 khz
thank you