06-24-2014 06:25 AM
Hi all, i'm wondering if is there some example code of a c# software where data is read from several PCI-e DAQ devices like 6623.
I want to know how to implement a proxy that with a single read calls every istance of the boards and how to manage read errors etc etc..
Thanks in advance..
06-25-2014 11:12 AM
Hi Mariano,
do all the boards reside in the same pc?
In yes, you can use the same task to acquire from two devices (if the devices support that). If this functionality is not supported, you have to manage two parallel task.
If the boards reside on two different pc, you have to implement some kind communication between the PCs.
You can find some basic examples of DAQmx programming for C here: C:\Users\Public\Documents\National Instruments\NI-DAQ\Examples\DAQmx ANSI C
Hope this helps.