Hi!
I'm working with C6748, BIOS 5.41.11.38, CCS5.
I have created a new PRD object in the .tcf file, called it "myPRD". The period is set to 50.
The function void myPRDfunc(void) is the callback plugged to the PRD object.
What will happen to the PRD object, period and the execution of the void myPRDfunc(void), if I change the period dynamically in void myPRDfunc(void) in the following way:
void myPRDfunc(void)
{
PRD_stop(&myPRD);
myPRD.period = 100;
PRD_start(&myPRD);
}
Thank you.