07-15-2014 03:51 PM
Hello all,
i am trying to pull out the time stamp from the waveform data if this is possible. I am trying to write it to file, but the express vi doesnt allow for fractional seconds and when i write the waveform data to a string for use with write to spreadsheet, the time data is lost.
any suggestions?
Solved! Go to Solution.
07-15-2014 03:57 PM
07-15-2014 04:17 PM
Thank you Dennis, I figured it out like right after i posted. Another question though. So im using a producer consumer loop and gathering data at 1000 samples per channel. Im trying to write this data to a file with a time stamp, but in the consumer loop when i get the time stamp from the waveform and rebuild the array, i only get one time stamp per 1000 samples.
Any ideas how to fix this? I can post code if necessary.
07-15-2014 04:36 PM
Make sure you are using a double to express fractional values. An INT would return values like what you are seeing.
07-15-2014 04:43 PM
07-15-2014 04:43 PM
07-15-2014 05:14 PM
That sounds like what i am looking for.
Thank you Dennis.