10-27-2005 08:36 PM
10-28-2005 01:53 PM
Hello Daniel,
It sounds like you are on the right track. Here are a couple things to note:
You cannot gate the counter with the internal clock, but you could generate a pulse train with one of your other counters.
The only way to have a non-cumulative count is to start and stop the counter task every 10ms, which would be fairly inefficient. You might instead consider determining the number of counts in software instead.
Good luck!
10-31-2005 07:26 AM
Yes this can definitely be done. I have done something very similar with the 6602 in the past with LV 7.0 and daqMX7.3 as well as 6.1 and traditional daq drivers. One word of advice, think about multithreading your application form the start, that is put the data acquisition in its own loop and send the results to a separate process loop using a queue, this architecture will allow you to collect and buffer the data as fast as needed and allow for processing and displaying the results in a second loop without a bottleneck, especially if the processing time is nondeterministic.
Paul
10-31-2005 07:37 AM
10-31-2005 10:22 AM
10-31-2005 10:21 PM
11-01-2005 02:20 AM
03-28-2007 02:21 AM