07-25-2011 12:59 PM
I have a very simple code set up that is just measuring voltage and current to a pump. The problem I am running into is that when I run the code, I get an error. Error -50103 occurred at DAQmx Start Task.vi:9
Possible reasons:
NI Platform Services: The specified resource is reserved. The operation could not be completed as specified.
Task name: _unnamedTas<25>
This should be trivial, but can not find what the error is coming from...
Thanks
Nick
Solved! Go to Solution.
07-25-2011 01:05 PM
Do a search for the forums for error 50103 (leave out the negative sign.) It is a very common error.
By any chance are you acquiring your two channels of data by way of two different DAQ tasks? If so, don't. You can only have one DAQ task per DAQ device. The shared resource is the timing engine for the DAQ device.
07-25-2011 01:13 PM
That is my issue. I forgot that I couldn't do that... Thanks!