03-04-2007 06:14 AM
03-06-2007 10:01 AM
Hi no1,
Do these devices have drivers that you have installed? Do they have a driver application programming interface (API) that you can access, probably through a C++ DLL? I assume you're using LabVIEW (since this is the board you posted to). If you're using LabVIEW and you do have DLLs for your cards, you can use the Call Library Function Node or the Shared Library Import Wizard (which creates wrapper VIs for your DLL calls).
Otherwise, you can use NI-VISA to communicate with your devices. Here is a tutorial how to configure a USB device using the VISA Driver Development Wizard (which would be analogous to Firewire), and here is an overview of VISA.
You would read the data from device A and then write that data to device B, using either the DLLs or VISA, depending on which route you choose. Unless the devices have specific functions to transfer data to each other in their API, you will have to transfer the data by reading and writing the data in LabVIEW. I hope this helps!
Regards,