I am making a DAQ application, and I want to add timestamps to the analog samples. I am reading from two Analog Inputs. When just reading one sample at a time, there is no problem, I get the desired result which looks like this:
4,522351 3,123546 15:12:35.250
4,562246 3,128452 15:12:35.865
But when I tell the 'read.vi' to read more than one sample, I get:
4,522351 3,123546
4,562246 3,128452
15:12:35.250
The problem isn't that the timestamp only appears once, that's not so bad, but the timestamp should be at the beginning, after the first samples, and not at the end after all the samples.
Any solutions?
Tanks.