09-04-2007 10:32 PM
09-05-2007 06:45 AM
sync: The only way to do it would be to use a shared signal (mostly a trigger signal) that goes to both devices.
speed: 2400 baud will allow you to send round about 240 bytes of information per second. If you really have already a 100ms update rate you have reached the limit. However RTFM, maybe you can speed up you digitizer.
09-05-2007 10:26 AM
I think a big part of your problem is with the 2D array that you are creating. Why do you do this? The result from the DAQ Assistant is basicially a 1D array and if you want the results from the RS-232 read, it should also be a 1D array.
I think this is a classic example of what can go wrong with dynamic data. The dynamic data type really acts to hide the underlying details and the conversion from and to dynamic data can really confuse things.
09-06-2007 09:16 AM
09-06-2007 04:12 PM