
Last update:
2020/04/08 18:38 odroid-c4:application_note:rtc_wakeup https://wiki.odroid.com/odroid-c4/application_note/rtc_wakeup?rev=1586338738
https://wiki.odroid.com/ Printed on 2023/06/21 15:35
odroid@odroid:~$ sudo i2cdetect -y 2
0 1 2 3 4 5 6 7 8 9 a b c d e f
00: -- -- -- -- -- -- -- -- -- -- -- -- --
10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
50: -- UU -- -- -- -- -- -- -- -- -- -- -- -- -- --
60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
70: -- -- -- -- -- -- -- --
rtc-pcf8563 3-0051: low voltage detected, date/time is not reliable
This error could be inaccurate but you should check the real voltages by yourself. It should close to
3V.
Using questions
RTC time isn't synced at startup
Kernel hctosys works before RTC hardware initialized because the i2c/RTC drivers are modules.
You can edit /etc/rc.local to synchronize the HW RTC time with the system time at boot time.
Refer to the following codes.
if [ -f /aafirstboot ]; then /aafirstboot start ; fi
hwclock -s -f /dev/rtc1
exit 0
In order to apply the change, reboot your Odroid.
target
sudo reboot
From:
https://wiki.odroid.com/ - ODROID Wiki
Permanent link:
https://wiki.odroid.com/odroid-c4/application_note/rtc_wakeup?rev=1586338738
Last update: 2020/04/08 18:38