Solution
If you are trying to run a task in hardware-timed single point mode, first
make sure your device supports this mode . The most common cause of
Error -201025
and
Error -200462
is a failure to load the buffer before starting the task. Doing so creates a non-buffered, hardware timed task, which is not supported by USB DAQ devices due to the inherent latency of the USB bus.
Without calling the DAQmx Write before the DAQmx Start function, your device will attempt to pull samples from a buffer that does not exist. You can eliminate the error by calling a DAQmx Write before the DAQmx Start function.
An example of this can be found in the LabVIEW example,
Voltage - Finite Output.vi found at
Help » Find Examples » Browse » Hardware Input and Output » DAQmx » Analog Output