09-20-2023 10:52 AM
Thanks Kevin, your help is so important! Enclosed the VI backsaved to LV20.
Christian
09-20-2023 11:39 AM
I see one likely problem and one potential one, depending on your config settings.
First the potential one. As posted, your front panel defaults set up "count reset" on a rising edge. If you reset on the rising edge of the detector signal and *also* latch & sample on that same rising edge, you might find yourself with a circuit-based race condition.
I'm wary of using the same edge to perform 2 functions if I care which of those 2 things happens nanoseconds before the other. Here you should. You want the count value to latch *before* it gets reset, so I'd recommend resetting on the falling edge of the detector pulse.
Now the likely one. In your reading loop, you seem to be requesting a specific # samples from each of 2 counter tasks. Well one of your detectors is almost certainly going to take longer than the other to register the specified #. After the faster one returns values and you're waiting on the slower one, new data will continue to build up in the task buffer of the faster one. Sooner or later, you're likely to end up with a buffer overflow error.
There are different ways to avoid this. The simplest code mod would be to request the magic # of samples: (-1). In a continuous sampling task, this will retrieve all the samples available at that moment without any waiting. You'll get different #'s from each task, but you won't be at risk of the buffer overflow. If you do this, you should add a msec Wait timer to your loop to give your CPU some breathing room. 100 msec per read iteration is a pretty good place to start.
-Kevin P
09-21-2023 05:39 AM
So cool, you're answering a question before I've even asked. I saw the potential problem with the buffer and wanted to ask, and, tada, here is already the answer 🙂
Regarding the count reset: this is there just because it is in the example, I did not intend to use it so far. But if, I'll change as proposed.
There is another task I'm working on right now and I've seen that there is a thread about where you've also answered:
https://forums.ni.com/t5/LabVIEW/DAQMx-two-counters-one-inverse-of-the-other/td-p/3695347
I've found another very simple solution that I'll post there.