Programming
BC315070 Version: 2.1.0
Start Debug Timer function
Fig.65: Function block F_STARTDEBUGTIMER
Calling this function starts the timer. The return value is "0".
Read Debug Timer function
Fig.66: Function block F_READDEBUGTIMER
This function reads the timer value. The return value has to be multiplied with 5.12µs.
Example
VAR
Timer_BX:WORD;
i:INT;
END_VAR
Program
F_STARTDEBUGTIMER();
Fori:=0to1000do
;
END_FOR
Timer_BX:=F_READDEBUGTIMER();