hi,
I am using EVMC6747_XDS510USB , CCS v3.3 and BIOS 5.33.05.
Now i want to use PRD and have done the follow steps.
1. Edit the .tcf file
bios.PRD.create("myPrd");
bios.PRD.instance("myPrd").fxn = prog.extern("PrdFxn");
bios.PRD.instance("myPrd").order = 1;
bios.PRD.instance("myPrd").period = 1000;
2. Add PRD function
void PrdFxn(Void)
{
counter++
}
The problem is when i run the program, the PrdFxn is never called.
Is there anything other that i have to set? Such as HWI or SWI.
In my program, i have created some tasks, has it influence to PRD?
thanks!