11-05-2007 08:33 AM
11-06-2007 07:23 PM
Howdy Bob,
First, what device are you using? Second what kind of data are you writing to the device? For example, if you were using an NI M-Series card and writing and array of doubles, you could display this on the front panel with a waveform graph.
11-06-2007 09:12 PM
11-07-2007 01:10 PM
Bob,
I’m not sure what data you want to see. The doubles you are writing can be displayed in the front panel as a single double, an array or in a graph. Those doubles get turned into binary by the driver and the binary is sent to the 6229 where the digital to analog conversion takes place in hardware.
I would suggest looking at examples for analog output in LabVIEW Help>>Find Examples. You can also set up a simulated 6229 in the Measurement and Automation Explorer. To set up a simulated 6229, search the Help of the Measurement and Automation Explorer for an article named “Creating NI-DAQmx Simulated Devices.” A simulated device can be used with LabVIEW.
11-07-2007 01:40 PM
11-09-2007 05:55 AM
Bob,
I think I now know what you’re getting at. Unfortunately, there is no simulation that can show you how long it takes to get your data through the DAC (you could write your own). For a few examples: A USB 6229 could take as long as seconds when LabVIEW is running in a windows environment. A PXI or PCI 6229 in windows would be much faster because of the faster bus. However, you are still at the mercy of the nondeterministic operating system. At best, you could have a PXI or PCI 6229 running in a real-time OS environment.
In writing simulation code for such a task, which couldn’t ever be accurate, you would have to take into account all the process running on the computer, the type of computer, the bus (the only easy consideration) and finally the whims of the OS.
11-09-2007 10:22 AM
Bob,
Maybe you could submit a product suggestion?
I agree that there's room to enhance our ability to query properties of a DAQmx output task buffer.
-Kevin P.