Hello,
i have configured a periodic function this way:
bios.PRD.instance("PRD0").order=1;
bios.PRD.instance("PRD0").period=1;
bios.PRD.create ("prdClock0");
bios.PRD.USECLK=1;
bios.PRD.MICROSECONDS=1;
bios.CLK.RESETTIMER=1;
bios.CLK.TIMMODE="32-bit chained";
bios.PRD.instance("PRD0").fxn=prog.exter("my_prd")
I have set a breakpoint at the periodic function my_prd and it never goes inside.
any idea please?