03-12-2007 12:00 PM - edited 03-12-2007 12:00 PM
I think your loop time is entirely determined by the hardware interaction, so the the timing is insignificantly fast in both cases.
However you current timing code is heavily flawed because it is impossible to tell at what time the first tick count is taken (No data dependency!). Most likely, the first tick count executes BEFORE (or in parallel to) the "OPEN1" and "OPEN2" nodes, so you are actually including their times in the measurnements. Remember, LabVIEW does not execute left-to-right. Any node that does not need to wait for inputs is ready to execute immediately.
You need to place the first tick count inside a sequence frame too to ensure it executes right before the FOR loop. For exact timings use a 3-frame sequence as in the image.

Make sure that everything that should not be timed is before or after the sequence. Also make sure there is no code that can run parallel to the sequence.
Message Edited by altenbach on 03-12-2007 10:01 AM