Greetings!
I heard that there was an ‘always online’ mode available for LTE Beacons so that the LTE modem stays on, one reason to do this would be to reduce latency in cloud sync.
I could not find this documented anywhere, but some sleuthing through the Javascript environment lead me to finding an enum called sync.Mode, this contains three values:
ALWAYS_ONLINE
PERIODIC_SYNC
AUTO_SELECT
Initially, I could not initially find a function that would accept these parameters, but through pure guesswork, I did find the following (undocumented?) function:
sync.setMode()
My thought was to call the function this way to set the device into always online:
sync.setMode(sync.Mode.ALWAYS_ONLINE);
However in testing, doesn’t seem to be keeping the LTE radio on, so I’m unsure if there are any parameters missing from the above, or if the setMode() function is even the relevant call to keep the LTE modem hot.
Can anyone provide details on how to enable the ‘always online’ mode?
Thanks!
Rucio