View Single Post
Old 07-09-2022, 08:00 AM   #5
pazos
cosiņeiro
pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.pazos ought to be getting tired of karma fortunes by now.
 
Posts: 1,406
Karma: 2451781
Join Date: Apr 2014
Device: BQ Cervantes 4
Quote:
Originally Posted by ichnilatis View Post
I gave two examples above. The functions that depend on the time have no effect untill I turn the page or close the file.
The functions that depend on time are constrained to a given timeframe on Pocketbooks if the autostanby plugin is enabled.

The autostandby plugin does the same as Pocketbook firmware does on its own: it sets the CPU to sleep after two seconds.

It becomes aggressive when the battery is below a certain threeshold: https://github.com/koreader/koreader...n/main.lua#L38

There's no obvious way to deal with it.

If you disable the autostandby plugin you'll get fairly worse battery time, since there's no standby at all unless requested by you by putting your device to sleep.

You'll get better results if you lower the "aggressive threesold" to
Code:
bat = 20,
or even to
Code:
bat = 5,
But again, the "aggresive threesold" just changes how time is added to the timeframe where the cpu is awake. And all functions that rely on "time ticking" will fail in the long run if the plugin is enabled.

But certainly, if you only see issues with battery below 60%, changing that parameter might help for your user case.

Last edited by pazos; 07-09-2022 at 08:03 AM.
pazos is offline   Reply With Quote