Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Kobo Reader

Notices

Reply
 
Thread Tools Search this Thread
Old 06-07-2022, 12:11 PM   #76
rtiangha
Evangelist
rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.
 
Posts: 496
Karma: 356531
Join Date: Jul 2016
Location: 'burta, Canada
Device: Kobo Glo HD
Quote:
Originally Posted by rashkae View Post
If the speculation is correct that there is some instability related to processor weirdness when clock speed is too low, there can easily be a great variety of individually affected units and trigger conditions. Someone will probably have to create some easy to apply patches for people to test that theory.
If that's the case, I wonder if changing the CPU governor from Interactive to something different (ex. Ondemand) would make a difference? No idea what the effect on battery life would be, though.

Code:
echo ondemand > /sys/devices/system/cpu/cpuX/cpufreq/scaling_governor
where X is the number of your processor core, starting at 0 (are the newer devices multi-core? If so, run the command once for each core; if not, just run it once using 0). Of course, you can substitute whatever supported CPU governor your device supports instead of ondemand (like maybe conservative).

You can input the above command in a terminal via telnet/ssh or turn it into a nickelmenu command with cmd_spawn. Note that it will reset back to Interactive whenever you reboot or switch to a different application like koreader.

Last edited by rtiangha; 06-07-2022 at 04:29 PM.
rtiangha is offline   Reply With Quote
Old 06-07-2022, 06:03 PM   #77
NiLuJe
BLAM!
NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.
 
NiLuJe's Avatar
 
Posts: 13,477
Karma: 26012494
Join Date: Jun 2010
Location: Paris, France
Device: Kindle 2i, 3g, 4, 5w, PW, PW2, PW5; Kobo H2O, Forma, Elipsa, Sage, C2E
performance would be the first choice to validate the theory *at all*, battery life be damned (hell, it might still be more efficient than a stock Sage anyway ;D) .

Nobody's answered me on that front in the related KOReader GH issue, FWIW.

As for the sterile back and forth before: It's definitely NanoClock, trust me.
NiLuJe is offline   Reply With Quote
Advert
Old 06-07-2022, 06:28 PM   #78
rtiangha
Evangelist
rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.
 
Posts: 496
Karma: 356531
Join Date: Jul 2016
Location: 'burta, Canada
Device: Kobo Glo HD
Quote:
Originally Posted by NiLuJe View Post
Nobody's answered me on that front in the related KOReader GH issue, FWIW.
I just read this comment and that's the EXACT same behavior I get on my Glo HD sometimes, both in nickel and in koreader. Funny thing is that I've had this device since 2016 but only really noticed this happening more frequently during the pandemic after a firmware upgrade (can't remember which one; I think it was in the 4.20s). And it looks like the Glo HD kernel was updated in that timeframe, so maybe there's a connection? In the meantime, to work around it, I disabled dithering in the developer settings which helps a bit, but not all the time.

Anyway, I recently imported a couple of books whose covers or images manage to consistently power off my device. Inspired by this thread, I tried changing the governor to ondemand and I was able to get past the cover on one of those books. With the other one, I couldn't get past things unless I also disabled dithering. If I had more samples, I'd see if performance would work consistently with dithering on, but I don't.

No idea what that all implies though.

Last edited by rtiangha; 06-07-2022 at 06:44 PM.
rtiangha is offline   Reply With Quote
Old 06-07-2022, 07:26 PM   #79
rtiangha
Evangelist
rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.
 
Posts: 496
Karma: 356531
Join Date: Jul 2016
Location: 'burta, Canada
Device: Kobo Glo HD
Well, for those who just want to copy/paste, here's a simple nickelmenu entry to change the governor on one CPU core:

Code:
menu_item :main  :CPU Governor :cmd_spawn :quiet : echo governor > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
where governor can be one of:

Code:
interactive
ondemand
conservative
powersave
performance
interactive is default. Here's what they do.

However, it looks like Elipsa and Sage are quad core devices, so that may not work because you should apply the same governor to all cores. You may be better off creating a script (I'll call it governor.sh):

Code:
#!/bin/sh

echo governor > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
echo governor > /sys/devices/system/cpu/cpu1/cpufreq/scaling_governor
echo governor > /sys/devices/system/cpu/cpu2/cpufreq/scaling_governor
echo governor > /sys/devices/system/cpu/cpu3/cpufreq/scaling_governor
And use nickelmenu to call the script instead:

Code:
menu_item :main  :CPU Governor :cmd_spawn :quiet : /path/to/governor.sh

Last edited by rtiangha; 06-07-2022 at 07:33 PM.
rtiangha is offline   Reply With Quote
Old 06-08-2022, 01:25 PM   #80
frostschutz
Linux User
frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.
 
frostschutz's Avatar
 
Posts: 2,279
Karma: 6123806
Join Date: Sep 2010
Location: Heidelberg, Germany
Device: none
if you prefer a one-liner you can also use tee

Code:
echo ${governor} | tee /sys/devices/system/cpu/*/cpufreq/scaling_governor
I haven't had time to experiment with governors yet, so I don't know if it would help...
frostschutz is offline   Reply With Quote
Advert
Old 06-08-2022, 05:54 PM   #81
rtiangha
Evangelist
rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.
 
Posts: 496
Karma: 356531
Join Date: Jul 2016
Location: 'burta, Canada
Device: Kobo Glo HD
OK, looks like I was wrong about changing cpu governors solving my problem. It was more having the device plugged into power that made things work, regardless of governor. It's quite reproducible and I have no idea what's going on.

If anyone wants to take a look at the kepub, let me know (no judging on my choice of reading material!). It forces my Glo HD to turn off as soon as you open the cover, so testing things is quick. Open to any other ideas too.
rtiangha is offline   Reply With Quote
Old 06-08-2022, 06:11 PM   #82
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 73,983
Karma: 128903378
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by rtiangha View Post
OK, looks like I was wrong about changing cpu governors solving my problem. It was more having the device plugged into power that made things work, regardless of governor. It's quite reproducible and I have no idea what's going on.

If anyone wants to take a look at the kepub, let me know (no judging on my choice of reading material!). It forces my Glo HD to turn off as soon as you open the cover, so testing things is quick. Open to any other ideas too.
Using Calibre, try copying the cover to a different eBook that you know works. Then try that and see if you get the same problem. If you do, it's the cover.
JSWolf is offline   Reply With Quote
Old 06-08-2022, 06:44 PM   #83
NiLuJe
BLAM!
NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.
 
NiLuJe's Avatar
 
Posts: 13,477
Karma: 26012494
Join Date: Jun 2010
Location: Paris, France
Device: Kindle 2i, 3g, 4, 5w, PW, PW2, PW5; Kobo H2O, Forma, Elipsa, Sage, C2E
@rtiangha: The GloHD quirks on specific patterns is a separate issue that's known by Kobo (IIRC, there's even a reply by George about it in this very forum. It might even be referenced in one of the issues in the message you quoted).

(It's tied to specific patterns which require the eInk tech to draw more power to switch. Said behavior depends to some extent on the tech's generation, but it's usually checkered patterns (i.e., specific contrasts over a specific amount of consecutive pixels)).

Dithering patterns are usually full of those, hence the link with dithering .
NiLuJe is offline   Reply With Quote
Old 06-08-2022, 07:02 PM   #84
rtiangha
Evangelist
rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.
 
Posts: 496
Karma: 356531
Join Date: Jul 2016
Location: 'burta, Canada
Device: Kobo Glo HD
Quote:
Originally Posted by NiLuJe View Post
(It's tied to specific patterns which require the eInk tech to draw more power to switch. Said behavior depends to some extent on the tech's generation, but it's usually checkered patterns (i.e., specific contrasts over a specific amount of consecutive pixels)).

Dithering patterns are usually full of those, hence the link with dithering .
...So the solution is to figure out how to over-volt this thing?

I didn't know it was a known issue. Is there anything else that can be done to mitigate it? Setting aside in-book images, would converting all covers to black-and-white help reduce that power draw? It's a really annoying problem but as long as I can open the book, I can use the slider to skip over problem images inside.
rtiangha is offline   Reply With Quote
Old 06-09-2022, 04:04 AM   #85
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 73,983
Karma: 128903378
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by rtiangha View Post
...So the solution is to figure out how to over-volt this thing?

I didn't know it was a known issue. Is there anything else that can be done to mitigate it? Setting aside in-book images, would converting all covers to black-and-white help reduce that power draw? It's a really annoying problem but as long as I can open the book, I can use the slider to skip over problem images inside.
I wonder. Does ePub have the same problem as KePub with these images?
JSWolf is offline   Reply With Quote
Old 06-09-2022, 03:15 PM   #86
NiLuJe
BLAM!
NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.
 
NiLuJe's Avatar
 
Posts: 13,477
Karma: 26012494
Join Date: Jun 2010
Location: Paris, France
Device: Kindle 2i, 3g, 4, 5w, PW, PW2, PW5; Kobo H2O, Forma, Elipsa, Sage, C2E
It's a hardware issue. Displaying an offending pattern with no software running at all would trigger the issue.
NiLuJe is offline   Reply With Quote
Old 06-09-2022, 09:26 PM   #87
rashkae
Wizard
rashkae ought to be getting tired of karma fortunes by now.rashkae ought to be getting tired of karma fortunes by now.rashkae ought to be getting tired of karma fortunes by now.rashkae ought to be getting tired of karma fortunes by now.rashkae ought to be getting tired of karma fortunes by now.rashkae ought to be getting tired of karma fortunes by now.rashkae ought to be getting tired of karma fortunes by now.rashkae ought to be getting tired of karma fortunes by now.rashkae ought to be getting tired of karma fortunes by now.rashkae ought to be getting tired of karma fortunes by now.rashkae ought to be getting tired of karma fortunes by now.
 
rashkae's Avatar
 
Posts: 1,142
Karma: 5061953
Join Date: Jun 2011
Location: Ontario, Canada
Device: Kobo Aura HD
Quote:
Originally Posted by NiLuJe View Post
It's a hardware issue. Displaying an offending pattern with no software running at all would trigger the issue.
Considering how inferior the dithering on Epub is compared to Kepub, CBZ, I think it's still a valid question
rashkae is offline   Reply With Quote
Old 06-10-2022, 04:17 AM   #88
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 73,983
Karma: 128903378
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by rashkae View Post
Considering how inferior the dithering on Epub is compared to Kepub, CBZ, I think it's still a valid question
Can you show us some photos showing the difference in dithering for ePub and KePub? I've never found a problem with the ePub dithering. in the 4.x firmware versions.
JSWolf is offline   Reply With Quote
Old 06-11-2022, 01:39 PM   #89
rtiangha
Evangelist
rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.rtiangha ought to be getting tired of karma fortunes by now.
 
Posts: 496
Karma: 356531
Join Date: Jul 2016
Location: 'burta, Canada
Device: Kobo Glo HD
Quote:
Originally Posted by xyclonei View Post
I combed over the settings page but could not locate that option. Any idea where it might be?
For those that were curious, I figured out how to enable Dyslexic Mode and posted instructions in the 4.33.19611 thread.
rtiangha is offline   Reply With Quote
Old 06-12-2022, 11:14 AM   #90
Quoth
the rook, bossing Never.
Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.
 
Quoth's Avatar
 
Posts: 11,158
Karma: 85874891
Join Date: Jun 2017
Location: Ireland
Device: All 4 Kinds: epub eink, Kindle, android eink, NxtPaper11
Two Sage models now rolled back to 4.32.x as either version of 4.33.x makes the Advanced Notebooks intermittent for writing or export.
Quoth is offline   Reply With Quote
Reply

Tags
firmware, firmware release


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Firmware Update Instructions and the latest Firmware Versions mitchwah Ectaco jetBook 113 10-24-2023 09:02 PM
Nouveau firmware firmware 6.5.765 pour la Inkpad 3/PB740 mooms PocketBook 0 11-08-2021 08:23 AM
Firmware Update Kindle firmware 5.12.1 eilon Amazon Kindle 102 09-26-2019 08:38 PM
Firmware glitch - typing text slow on some firmware+device combinations mdp Onyx Boox 11 11-11-2017 12:48 AM
Firmware 2.0.3 Pocketbook IQ - another firmware is release for IQ tvpupsik PocketBook 26 12-13-2010 03:03 PM


All times are GMT -4. The time now is 08:09 AM.


MobileRead.com is a privately owned, operated and funded community.