![]() |
#1 |
Member
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 16
Karma: 2926
Join Date: Dec 2010
Device: Kindle Keyboard, Voyage, Tolino Vision HD3, PBTouch HD3
|
Koreader crashes on Pocketbook Color Lux PB801
I got my Hands on an old and not so good(for various reasons) color reader for my kid. Pocketbook Color Lux PB801
I was not particularly satisfied with the integrated reading programs, so I tried cool reader, which was amazingly fast but lacked color support und has no device support since 7 yrs. So I tried koreader v2024.11 But after I copied the application completely to the reader and adjusted the extensions.cfg to open epubs with koreader directly, the application crashed on startup. Here is an excerpt from the crash.log Spoiler:
I think that the model is recognized correctly, but my programming and lua skills are not ready for this^^ The color lux was certainly not the favorite child of the ereader scene, but I would appreciate any support. |
![]() |
![]() |
![]() |
#2 |
Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 1,726
Karma: 730679
Join Date: Oct 2014
Location: Antwerp
Device: Kobo Aura H2O
|
Try the latest nightly: http://build.koreader.rocks/download...02-10/?C=M&O=D
|
![]() |
![]() |
Advert | |
|
![]() |
#3 |
Member
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 16
Karma: 2926
Join Date: Dec 2010
Device: Kindle Keyboard, Voyage, Tolino Vision HD3, PBTouch HD3
|
Tried latest nightly, however same error.
But I assumed that this worked in the past. So I tried older Versions of koreader and the first that booted, but had wrong orientation was v2015.11-stable. The first which kind of worked was v2018.12, but changing some settings freezes the device. power off with long button press needed. I try to find the point, where the regression was introduced. |
![]() |
![]() |
![]() |
#4 |
Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 1,726
Karma: 730679
Join Date: Oct 2014
Location: Antwerp
Device: Kobo Aura H2O
|
Can you change line 243 from
Code:
self._model_init() Code:
self:_model_init() Last edited by Frenzie; 02-11-2025 at 09:16 AM. |
![]() |
![]() |
![]() |
#5 |
Member
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 16
Karma: 2926
Join Date: Dec 2010
Device: Kindle Keyboard, Voyage, Tolino Vision HD3, PBTouch HD3
|
Yeah that fixed the first error. But it segfaults later:
Spoiler:
|
![]() |
![]() |
Advert | |
|
![]() |
#6 |
Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 1,726
Karma: 730679
Join Date: Oct 2014
Location: Antwerp
Device: Kobo Aura H2O
|
You could see if there's an updated firmware version that helps, and otherwise it should work if you change the device definition to hasColorScreen=no.
|
![]() |
![]() |
![]() |
#7 | |
Member
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 16
Karma: 2926
Join Date: Dec 2010
Device: Kindle Keyboard, Voyage, Tolino Vision HD3, PBTouch HD3
|
Quote:
However it is an older Version, than I have right now and it won't update. The latest Koreader which is working "better" than 2018.12 is v2019.03.1. After that Koreader ain't gonna start or create a crash.log. I'll try hasColorScreen=no, however this is not ideal^^ Edit: Just tested hasColorScreen=no. It works as expected (however, crashes when opening the top Menu, with touch. Button works -.- I think this device is flawed) now it is working... Koreaders Fileexplorer on the otherhand does use colours nonetheless and works. How is the Framebuffer handling different between fileexplorer an Reader? ----- Ok Ok. After changing canHWDither from yes to no color is working again. However I am unable to open the top Menu (with button or touch) Spoiler:
----- edit 301: undefined symbol: PartialUpdateHQ gave a hint, and looking through the code I changed it to the following: /applications/koreader/ffi/framebuffer_pocketbook.lua Line 36-40 Code:
if fb.device.hasColorScreen() and hq then inkview.PartialUpdateHQ(x, y, w, h) else inkview.PartialUpdate(x, y, w, h) end Code:
if fb.device.hasColorScreen() and hq then inkview.PartialUpdate(x, y, w, h) else inkview.PartialUpdate(x, y, w, h) end There is inkview.FullUpdateHQ() also. I think this is doing a fullscreen Update e.g. after 6 pageturns. But this is working as expected. Last edited by ibiza666; 02-12-2025 at 10:49 AM. |
|
![]() |
![]() |
![]() |
#8 |
Connoisseur
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 72
Karma: 388296
Join Date: Aug 2022
Location: USA
Device: Pocketbook Inkpad Color 3
|
Yes, inkview.FullUpdateHQ and inkview.PartialUpdateHQ functions are available for newer firmware only, that's why I suggested toggling hasColorScreen to "no". Does it make everything black and white with that flag?
|
![]() |
![]() |
![]() |
#9 | |
Member
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 16
Karma: 2926
Join Date: Dec 2010
Device: Kindle Keyboard, Voyage, Tolino Vision HD3, PBTouch HD3
|
Quote:
What did the trick in the end was reverting hasColorScreen back to yes and changing the option canHWDither to no. This allowed coloured images but broke the top menu. There are still some crashes, but reading and changing document settings is fine. Should I open a github issue? |
|
![]() |
![]() |
![]() |
#10 |
Connoisseur
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 72
Karma: 388296
Join Date: Aug 2022
Location: USA
Device: Pocketbook Inkpad Color 3
|
|
![]() |
![]() |
![]() |
#11 |
Wizard
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 1,726
Karma: 730679
Join Date: Oct 2014
Location: Antwerp
Device: Kobo Aura H2O
|
|
![]() |
![]() |
![]() |
#12 |
Member
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 16
Karma: 2926
Join Date: Dec 2010
Device: Kindle Keyboard, Voyage, Tolino Vision HD3, PBTouch HD3
|
Done. Thanks for your help frenzie an dmalinovsky o/
Koreader v2024.11 stable crashes on Pocketbook Color Lux PB801 #13254 |
![]() |
![]() |
![]() |
#13 | |
Member
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 16
Karma: 2926
Join Date: Dec 2010
Device: Kindle Keyboard, Voyage, Tolino Vision HD3, PBTouch HD3
|
Quote:
|
|
![]() |
![]() |
![]() |
Tags |
2024.11, color lux, koreader, pb801 |
Thread Tools | Search this Thread |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
How does koreader work on PocketBook Touch Lux 5? | absalom | KOReader | 4 | 10-28-2021 11:40 AM |
Does koreader works well on PocketBook Touch Lux 5 | absalom | PocketBook | 1 | 09-29-2021 02:50 PM |
Buy ISO PocketBook Color Lux | KateRR | Flea Market | 2 | 08-13-2020 10:57 AM |
PocketBook Color Lux hängt | lslwiyjjwawjalo | PocketBook | 2 | 12-14-2013 07:18 PM |
Pocketbook Color Lux? | thesandman | Which one should I buy? | 19 | 07-27-2013 10:04 AM |