12-10-2006 09:36 PM
12-11-2006 06:50 AM
LabVIEW's time stamp is the number of seconds since 00:00:00 01/01/1904. Unix (and hence I presume Linux) time is the number of seconds since 00:00:00 01/01/1970, all times specified as GMT. So all you need to do to a Unix timestamp is to add the number of seconds between these two moments in time to obtain the LabVIEW timestamp.
You can generate this number by using Date/Time to seconds, giving the input as Day 1, Month 1, Year 1970, and all others zero. It gives 2082844800
Make sure that you treat the numbers as U32, as the current date/time exceeds the maximum value for as signed 32 but value.
Rod.