10-27-2009 03:37 AM
Hello ,
I am wondering if it possible to make configuration of NI DAQ card from labview, but make data aquisition from DLL written in C++?
michael
Solved! Go to Solution.
10-28-2009 04:40 PM
Hi Mishklyar
Generally when you create a task and configure it in LabVIEW you will have to use that task in LabVIEW. What you may want to do, is configure your tasks in Measurement & Automation Explorer, save them, and then access these task from your C++ code.
I hope that helps, let me know if you have any further questions.
Thanks
Scott M.
11-09-2009 11:07 AM
Thanks Scott,
I will think about it,but will it work also with buffered analog output? ( everytime different data is loaded)
11-10-2009 09:59 AM
Hi Mishklyar,
You can create Analog Output task in Measurement & Automation Explorer aswell, you can then use this task to out put different data, so long as you want to use the same output paramteres (Generation Mode, Rate, ect.).
Thanks
Scott M.
11-12-2009 10:54 AM
Just an additional option:
If your task creation/configuration needs to be programmatic in LabVIEW, you can use the "Storage VIs" under Measurement I/O>>NI-DAQmx>>Advanced>>System Setup>>Storage to programmatically save a task. Then from C++, you could just load that task.
11-15-2009 03:28 AM