Difference between revisions of "RTC/zh"
From FriendlyELEC WiKi
(Created page with "English ===S5P4418/S5P6818=== Use the following command to see the GPIO pins.<br /> <syntaxhighlight lang="bash"> </syntaxhighlight>") |
|||
Line 1: | Line 1: | ||
[[RTC|English]] | [[RTC|English]] | ||
− | + | ==S5P4418/S5P6818== | |
− | + | ===读取当前时间=== | |
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
+ | sudo hwclock -r -f /dev/rtc0 | ||
+ | </syntaxhighlight> | ||
+ | The output results are summarized below: <br /> | ||
+ | '''Tue 01 Sep 2009 12:07:52 AM UTC .371098 seconds''' | ||
+ | |||
+ | ===设置时间并保存=== | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | sudo date -s "2019-10-09 17:00:00” | ||
+ | sudo hwclock -w -f /dev/rtc0 | ||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 09:13, 9 October 2019
1 S5P4418/S5P6818
1.1 读取当前时间
sudo hwclock -r -f /dev/rtc0
The output results are summarized below:
Tue 01 Sep 2009 12:07:52 AM UTC .371098 seconds
1.2 设置时间并保存
sudo date -s "2019-10-09 17:00:00” sudo hwclock -w -f /dev/rtc0