03-09-2006 04:51 PM
03-10-2006 03:39 PM
03-13-2006 03:42 PM
03-14-2006
11:45 AM
- last edited on
11-06-2025
01:16 PM
by
Content Cleaner
The Duplicate Count Prevention property is located in the DAQmx Channel property node under Counter Input>General Properties>More>Advanced. Here are some links to help you get started with DAQmx
Transition from Traditional NI-DAQ to NI-DAQmx
Answers to Frequently Asked Questions about NI-DAQmx and Traditional NI-DAQ (Legacy)
Learn 10 Functions in NI-DAQmx and Solve 80% of Data Acquisition Applications
03-14-2006 05:00 PM
From looking at your VIs I don't see anything particularly wrong. I would guess that you are in fact running into the single threaded-ness of the traditional DAQ driver. You can get around this by combining your traditional daq examples into a single example where start is called on both AI and CTR before you call read on either one. Your issue is likely that read is getting called on the counter operation at which point your AI VI will not run at all until the read completes. Even if you switch to DAQmx (which I would recommend unless you have a significant amount of code written already), you should still be setting up your VIs so both tasks are started before read is called.
I hope this helps!
gus....
03-15-2006 08:52 AM
03-15-2006 10:13 AM
03-15-2006
10:20 AM
- last edited on
11-06-2025
01:17 PM
by
Content Cleaner
My apologies for broken links.
Transition from Traditional NI-DAQ to NI-DAQmx
Answers to Frequently Asked Questions about NI-DAQmx and Traditional NI-DAQ (Legacy)
03-16-2006 10:49 AM