05-09-2006 07:04 AM
05-10-2006 06:53 PM
Hi Onur,
As it says in the KnowledgeBase article you referenced, National Instruments doesn't officially support Borland Delphi in the NI-DAQmx driver. However, I'd be very interested to know if you get those wrapper functions to work. Has anyone out there had any experience using them that could offer some insight?
Thanks,
Justin M.
National Instruments
05-15-2006 08:20 AM
05-16-2006 07:36 AM
05-16-2006 07:36 AM
05-16-2006 07:53 AM
Hi All,
This problem is ok.
But I have a new problem. Now, I can'T multiple channel read the same time.
I try this return error message to me. Message is following.
--------------------
Error:
The specified resource is reserved. The operation could not be completed as specified.
Task Name: _unnamedTask<1>
Status Code: -50103
--------------------
05-16-2006 07:02 PM
Onur,
It sounds like you are trying to run multiple analog input tasks as the same time. In DAQmx, you can only have one analog input task running at a time. You'll need to add multiple channels to the same task if you want them to run at the same time. When you call the DAQmxCreateChannel function, you can specify multiple channels. Here is an example of a channel string that includes channels ai0, ai3, ai4, ai5, and ai6:
"Dev0/ai0, Dev0/ai3:6"
For more information on channel syntax, see the NI-DAQmx C Reference Help (NI-DAQmx Concepts >> NI-DAQmx Help >> NI-DAQmx Key Concepts >> Channels >> Physical Channel Syntax).
Thanks,
Justin M.
National Instruments
05-23-2006 05:35 PM
05-24-2006 03:02 AM
05-24-2006 03:31 AM