Unattended TV wakeups
Posted: Sat Oct 05, 2013 7:09 am
Hi !
About half a year ago I created my own infolink emulator and patched some js code on my UE40EH5307 to use my infolink instead of infolink.pavv.co.kr. My emulator writes access logs of all queries made by tv.
Recently I reviewed the logs and found very strange behaviour. At random time every night tv blindly wakes up.
Then I created simple cmd script for addition behaviour study.
It pings TV every 10 seconds and writes + or - sign to log file with date and time.
here is sample log of this script :
Log from my infolink emu :
I havent visually noticed TV was up at 04:49.
Why does it wake up every night ? What kind of tasks require OS boot ?
About half a year ago I created my own infolink emulator and patched some js code on my UE40EH5307 to use my infolink instead of infolink.pavv.co.kr. My emulator writes access logs of all queries made by tv.
Recently I reviewed the logs and found very strange behaviour. At random time every night tv blindly wakes up.
Then I created simple cmd script for addition behaviour study.
Code: Select all
:1
set OK=N
for /f "tokens=*" %%a in ('ping -n 1 192.168.2.3 ^|find "Reply from 192.168.2.3"') do (
set OK=Y
)
if /i %OK% EQU Y (
echo + %DATE% %TIME%>>tv.log
) else (
echo - %DATE% %TIME%>>tv.log
)
sleep 10
goto :1
here is sample log of this script :
Code: Select all
- 05.10.2013 4:48:17,27
- 05.10.2013 4:48:31,27
- 05.10.2013 4:48:45,27
- 05.10.2013 4:48:59,27
+ 05.10.2013 4:49:09,30
+ 05.10.2013 4:49:19,34
+ 05.10.2013 4:49:29,37
+ 05.10.2013 4:49:39,41
+ 05.10.2013 4:49:49,45
+ 05.10.2013 4:49:59,47
+ 05.10.2013 4:50:09,50
+ 05.10.2013 4:50:19,54
+ 05.10.2013 4:50:29,58
+ 05.10.2013 4:50:39,61
- 05.10.2013 4:50:53,27
- 05.10.2013 4:51:07,27
- 05.10.2013 4:51:21,27
Code: Select all
[05-10-2013 04:49:30] Cache hit for : GET /openapi/device/model/bind?timestamp=30477
[05-10-2013 04:49:30] Cache hit for : GET /openapi/device/lookup?timestamp=30715
[05-10-2013 04:49:30] Cache hit for : GET /openapi/device/auth/seedkey?timestamp=30762
[05-10-2013 04:49:30] Cache hit for : GET /openapi/conf/log?service=widget×tamp=1380948570003
[05-10-2013 04:49:30] Cache hit for : GET /openapi/service/widget/list?lang=ru×tamp=1380948570237
Why does it wake up every night ? What kind of tasks require OS boot ?