LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Can the Tick Count in LabVIEW 6.1 be initialized

I would like my tick count timer to begin from 0 ms. Is this possible and how so?
0 Kudos
Message 1 of 2
(2,753 Views)
No it's not. The start time is set to zero when the pc is turned on or rebooted I believe and then when it wraps around after reaching it's maximum count ((2�32)�1). To get an elapsed time using the tick count, at the beginning of your program call it once and pass that value inside your while loop. Inside the while loop, call it again and subtract the start tick count from the current tick count.
0 Kudos
Message 2 of 2
(2,753 Views)