Hi,
is there a way to change the sleeptimer settings?
The 30/60/... minutes settings are too long for me. I would prefer to set the sleep timer for example to 10/20/30/... minutes.
Is there a way to achieve this? Any developers here that can help me finding the constants in the firmware?
thanks!
Sleeptimer settings [dev?]
Re: Sleeptimer settings [dev?]
Default values (in seconds, from 1800 .. 10800) are hard-coded in CViewerNormal::t_SetSleep() / _ZN13CViewerNormal10t_SetSleepEv . They are loaded to R6 register (LDREQ R6, ...) and thenlexi wrote:Any developers here that can help me finding the constants in the firmware?
Code: Select all
MOV R1, R6
LDR R0, =g_AppTV
BL _ZN4TCTv13SetSleepTimerEi ; TCTv::SetSleepTimer(int)
Re: Sleeptimer settings [dev?]
Hello sbav1,
thanks for the fast research
I guess now i don't have no more excuses and I'll have to set up a development environment.
thanks for the fast research

I guess now i don't have no more excuses and I'll have to set up a development environment.