04-13-2023 03:56 AM
Hi everyone,
I want to use a wait function in a program of TS between 2 steps with a precision of 1ms.
Wait function gives me each time diffrent time. For example I set it 2 seconds but it is not precise. the time taht I measure using Second function are 2.03, 2.06 , ...
It means I have a deviation each time in a range of 300 - 500 ms.
Is there any solution to make a presice time in TS?
Thank you so much for your help.
04-13-2023 09:42 AM
You can never expect high timing precision on Windows. Windows is a general-purpose operating system. Any other program or background process will compete for the CPU resource and impact the timing precision.
Try to close all programs and run only TestStand.
04-14-2023 02:23 AM - edited 04-14-2023 02:24 AM
Okay. Thank you @ZYOng for your reply.