Working network time sync on Orbic RC400L #532
drinkingc0ffee
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
It is possible to get the accurate network time from the Orbic RC400L through the /dev/smd8 and /dev/smd11 devices with AT commands. Specifically using rootshell (elevated permissions are required) for access to the devices.
The specific working command is:
echo -e "AT+CCLK?\r" > /dev/smd8 & cat /dev/smd8
Which will return the time in the following format:
+CCLK: "25/04/10,22:15:36+32"
A working script to set the time can be found at https://github.com/drinkingc0ffee/Orbic-Scripts/
Beta Was this translation helpful? Give feedback.
All reactions