From Friday, April 19th (11:00 PM CDT) through Saturday, April 20th (2:00 PM CDT), 2024, ni.com will undergo system upgrades that may result in temporary service interruption.

We appreciate your patience as we improve our online experience.

Hobbyist Toolkit

cancel
Showing results for 
Search instead for 
Did you mean: 

Time Stamp in Raspberry Pi 4

Solved!
Go to solution

This forum post here is actually where I have learned most of my Linux and I have to give credit to Rolf here with helping me to learn what I know so far.

 

On the LabVIEW side I have never used the Get Date Time String function you used.  I always use the Format into String function and find it very useful.  I am sure each have their own purpose.

 

The forum is for helping and I am glad to help where I can.

David Wilt
The New Standard LLC
0 Kudos
Message 21 of 30
(1,836 Views)

You can install additional timezones in the LabVIEW chroot environment through the opkg command:

 

opkg update
opkg list tz*

 

This will give you a list of packages that contain various timezone settings depending on (loosely) continents.

 

One of the packages listed should probably contain your timezone settings. After you installed it with

 

opkg install tzdata-<your area>

 

the according file should be present in the /usr/share/zoneinfo

 

The LabVIEW Get Date/Time string always returns the time in local time. Which for your system is UTC since you changed the timezone settings in the chroot to use UTC. If you want the local ART time you need to change the timezone accordingly INSIDE the chroot. So the formatting for the Get Date/Time string happens on the RPI according to the timezone settings of your LabVIEW chroot environment. The timezone setting of your Raspbian host system does not matter at all.

 

But the "current time" control is a timestamp which internally always stores date/time in GMT (equivalent for our purposes to UTC). This GMT timestamp is then transferred to your Windows computer through the debug channel and to the front panel which runs on your Windows computer, so LabVIEW for Windows converts the timestamp into a string according to your Windows local timezone settings. Since your Windows computer is almost certainly set to local ART time, there you get a 3 hour difference between the two. It's all very logical and even if it can cause knots in your synapses, an unavoidable result of the fact that our earth really is a round ball that turns around its own axis.

 

The Format String function also uses by default local time formatting. You can change that by changing the formatting string from %T to %^T, which will cause the time formatting to be in UTC.

 

If you use a custom format rather than the platform default time and date format you would change the format string from %<your detailed format>T to %^<your detailed format>T.

 

The caret right after the percent sign indicates to use UTC instead of local timezone.

 

You always need to consider where the formatting of the time string happens and according to which rules. LabVIEW tries to make it as consistent as possible by maintaining timestamps internally always as GMT. But this timestamp value would be hard to digest for humans (current time really would look something like: 3693547745.784101324185665536) so the timestamp control also converts this timestamp to a normal time string on the computer system the front panel is executed. Yes you would probably prefer if LabVIEW was instead transfering an image of the local front panel to your Windows system, except LabVIEW on the Raspberry Pi and really most other embedded targets doesn't even have front panels. Also if your RPI is located in Africa and you debug it from your home location over the internet there is something to say to show you your local time for timestamps transmitted through the debug link, so if that timestamp reads your current local time you know it was just generated instead of showing a time some 4 or 5 hours ago. Of course there will always be situations where this feels wrong, but the problem with this is that whatever LabVIEW does here, it will feel wrong and unintuitive to about half of the people. So LabVIEW chose to do the scientific more correct way here. If you really need to know the local time of the system itself you can always convert the timestamp into a string on the system and transfer this string to your debug front panel.

Rolf Kalbermatter
My Blog
0 Kudos
Message 22 of 30
(1,827 Views)

Rolfk, 

I think I have understood your last post.

 

In order for "Get Date / Time Strig" or "Format Into String" to give the local time, the time zone must be configured correctly within "schroot -r -c lv". It is right?

 

As you can see in the attached image, now the time zone of my country does exist, after executing "opkg update" and installing my time zone with "opkg install datazone-Americas".

 

So, from this instance, what would be the steps to follow for the Labview environment to deliver the local time and not 3 hours ahead?

 

I have followed, again, the steps David suggested, but I was unable to get the "date" command to deliver the local time within the Labview environment.

Total thanks

0 Kudos
Message 23 of 30
(1,818 Views)

Choke,

 

You LabVIEW chroot is not using a timezone per your latest image.  If you have the timezone set then the date command would return with your configured timezone.  For example here is what I see when I have my set to America/Chicago:

 

DavidWilt_0-1610718670619.png

 

You are still on step #2 of what I have outlined previously.  Get the LabVIEW chroot to display with your timezone using the date command and then let me know what you see in LabVIEW.

 

David Wilt
The New Standard LLC
0 Kudos
Message 24 of 30
(1,812 Views)

David, image attached.

0 Kudos
Message 25 of 30
(1,809 Views)
Solution
Accepted by Choke

Choke,

 

You don't want UTC, right?

 

Issue this comment in the LabVIEW chroot:

 

ln -sf /usr/share/zoneinfo/America/Argentina /etc/localtime

 

 

Then do the date command again.  If the time is still returned in UTC then the timezone did not take.  The date command does not handle errors well and will just return the time in UTC if there is an issue. 

David Wilt
The New Standard LLC
Message 26 of 30
(1,802 Views)
Solution
Accepted by Choke

Note also that you did explicitly configure your chroot to UTC as shown in the zoneinfo picture in your post here. You may have to first delete your /etc/localtime symbolic file entry before you can create a new one as David told you.

 

rm /etc/localtime

 

 After that you should be able to create the new symlink as explained by David.

Rolf Kalbermatter
My Blog
0 Kudos
Message 27 of 30
(1,797 Views)

The time zone in Argentina is UTC-3.
Responding to David: yes I want to see UTC.
And, indeed, with your procedure you can change the time zone from, for example, UTC to EST. I did it and it works.
What does not work is the local time which is the time delivered by UTC minus 3.
Attached Image of the time zone and the Rpi command terminal.

0 Kudos
Message 28 of 30
(1,790 Views)
Solution
Accepted by Choke

Your /usr/share/zoneinfo/America/Argentina is a directory that contains different timezone files depending on the city. So your correct command is most likely:

 

ln -sf /usr/share/zoneinfo/America/Argentina/Buenos_Aires /etc/localtime

 

or one of the other cities in that directory if closer to you. 

Rolf Kalbermatter
My Blog
Message 29 of 30
(1,786 Views)

Perfect !!!!
See the pictures.
Now the time of the Labview environment coincides with the local time of Argentina.
I have run the VI and as you can see "current time" equals "resulting string"

Thank you, thank you very much David, too.

0 Kudos
Message 30 of 30
(1,781 Views)