|
|
Thread Tools | Search this Thread |
01-19-2015, 11:05 AM | #16 |
Connoisseur
Posts: 84
Karma: 1142796
Join Date: Jul 2009
Device: Sony PRS 350, Kobo mini, PB mini
|
The screenshot is blank, obviously dumping a different buffer than koreader is using. I need to get hold of a camera to take an external shot.
It looks to me as if something like the pixel depth (bpp) or so is wrong. Like all pixels are extremely smeared out along the lines. The log file says "xres=600 yres=800 bpp=4 vdepth=8". The first three are as I would assume (600x800, 16 shades of grey). I do not know what vdepth is and whether this is correct. Jens |
01-19-2015, 11:49 AM | #17 | |
♫
Posts: 661
Karma: 506380
Join Date: Aug 2010
Location: Germany
Device: Kobo Aura / PB Lux 2 / Bookeen Frontlight / Kobo Mini / Nook Color
|
I got the same answer for PB Lux 2 with 5.2: some distored lines, unreadable.
Crash log: Quote:
|
|
Advert | |
|
01-19-2015, 12:14 PM | #18 |
Connoisseur
Posts: 84
Karma: 1142796
Join Date: Jul 2009
Device: Sony PRS 350, Kobo mini, PB mini
|
And this is how it looks like:
Last edited by sadowski; 01-19-2015 at 12:18 PM. |
01-19-2015, 01:04 PM | #19 |
Zealot
Posts: 144
Karma: 405567
Join Date: Nov 2012
Device: K3 KPW PB840
|
Yes, it looks like the pitch size (bytes for a single line) is detected wrong, more precisely pitch size is less than actual one used in the framebuffer device otherwise the application would very likely have already crashed.
So you can just hack this line: https://github.com/koreader/koreader..._linux.lua#L64 in the "koreader/ffi/framebuffer_linux.lua" file at line 64: Code:
elseif vinfo.bits_per_pixel == 8 then self.bb = BB.new(vinfo.xres, vinfo.yres, BB.TYPE_BB8, self.data, finfo.line_length) else Code:
elseif vinfo.bits_per_pixel == 8 then self.bb = BB.new(vinfo.xres, vinfo.yres, BB.TYPE_BB8, self.data, finfo.line_length + 4) else Code:
elseif vinfo.bits_per_pixel == 8 then self.bb = BB.new(vinfo.xres, vinfo.yres, BB.TYPE_BB8, self.data, finfo.line_length + 8) else |
01-19-2015, 01:50 PM | #20 |
Member
Posts: 19
Karma: 10
Join Date: Jan 2015
Device: InkPad 840, InkPad 740
|
OK, i've tested version v2014.11-39 on PocketBook InkPad 840 and it works very well. And there is even a small surprise: traslation in Polish - great! No problems with touch control anymore, everything is fast and smooth - just can't belive that
Some comments: - I think there should be option to disable/reduce momentum on scroll - sometimes i've encountered an effect like it starts accelerating and scrolling too much (after releasing finger) and it becomes uncontrollable. - I don't know if any multitouch controls are implemented, but i can't get any to work. When i'm trying the only effect is text marking or screen repaint. - And i don't know how to use pdf multi-column reading with koreader. - I have installed Georgia EInk fonts in default font directory. Is it possible for koreder to use fonts installed this way? For now koreader becomes my no.1 for reading pdfs Last edited by wirtold; 01-19-2015 at 06:55 PM. |
Advert | |
|
01-19-2015, 02:20 PM | #21 |
Wizard
Posts: 3,015
Karma: 18765431
Join Date: Oct 2010
Location: Sudbury, ON, Canada
Device: PRS-505, PB 902, PRS-T1, PB 623, PB 840, PB 633
|
@chrox You should use the older 1.1a SDK release to build for the version 4 and earlier firmware devices. The latest SDK release seems to be just for version 5.
|
01-19-2015, 03:42 PM | #22 | |
Connoisseur
Posts: 84
Karma: 1142796
Join Date: Jul 2009
Device: Sony PRS 350, Kobo mini, PB mini
|
Quote:
|
|
01-19-2015, 05:10 PM | #23 |
Enthusiast
Posts: 36
Karma: 4498
Join Date: Feb 2014
Device: none
|
PocketBook 626 aka PocketBook Lux 2:
Tested build v2014.11-31 on FW 4.4 -> Doesn't run Tested build v2014.11-39 on FW 4.4 -> Runs with garbled screen Tested build v2014.11-38 on FW 5.2 -> Runs with garbled screen Crash log last test: Atached mp shm: id 0 addr 4005b000 size 18284 ----------------> USING A2PLUS MODE <----------------- attach_shm: mtfb key=251330696 size=833044 Atached mtfb shm: id 5000a addr 41ed7000 size 833044 ------------------------- The task - koreader.app have xres=758 yres=1024 bpp=4 vdepth=8 ------------------------- ndepth:4 hqdepth:4 orientation:0 attach_shm: ref key=2130378752 size=776192 Atached ref shm: id 8001 addr 42074000 size 776192 [INFO] [/srv/einkbuild/brand_build/ebrmain_build/inkview/src/partners.c:29: init_partner]Partner from device.cfg is default [INFO] [/srv/einkbuild/brand_build/ebrmain_build/inkview/src/partners.c:36: init_partner]Partner is set to default OpenTheme: /ebrmain/themes/.default.pbt Theme real name: Line ts: loading default calibration values Atached mqueue: id 8001 ./luajit: ffi/blitbuffer.lua:713: interrupted! stack traceback: ffi/blitbuffer.lua:713: in function 'blitFrom' ffi/blitbuffer.lua:735: in function 'addblitFrom' frontend/ui/widget/container/alphacontainer.lua:51: in function 'paintTo' frontend/ui/uimanager.lua:397: in function '_repaint' frontend/ui/uimanager.lua:459: in function 'run' ./reader.lua:138: in main chunk [C]: at 0x0000bdf1 Picture: Last edited by j0r13n; 01-19-2015 at 07:06 PM. |
01-20-2015, 03:48 AM | #24 |
Wizard
Posts: 1,379
Karma: 2155307
Join Date: Nov 2010
Location: Goettingen, Germany
Device: Kindle Paperwhite, Kobo Mini
|
Hm, it just might be no 8bit grayscale framebuffer for this device? Strange thing, this.
|
01-21-2015, 11:31 AM | #25 | |
Zealot
Posts: 144
Karma: 405567
Join Date: Nov 2012
Device: K3 KPW PB840
|
Quote:
And you can also try to change finfo.line_length with finfo.smem_len at that line. Probably smem_len could be more accurate that line_length in PocketBook. |
|
01-21-2015, 11:50 AM | #26 |
Zealot
Posts: 144
Karma: 405567
Join Date: Nov 2012
Device: K3 KPW PB840
|
It's probably true when you use the PocketBook SDK heavily because of the incompatibility. But in Koreader we only use a minimum subset of the API to make Koreader to run. And the used APIs are only relevant to input events handling since we cannot read the /dev/input/event* directly. So we spawn a separate process running InkViewMain main loop and redirect all input events to koreader side via the event handler. Screen output is written to the /dev/fb directly in Koreader so we don't use any GUI facility provided by PocketBook thus the latest SDK should be enough to build Koreader for all recent PockeBook devices.
|
01-21-2015, 11:56 AM | #27 | |
Zealot
Posts: 144
Karma: 405567
Join Date: Nov 2012
Device: K3 KPW PB840
|
Quote:
2. You can use two fingers swipe right together to show the Table of Content. And use two fingers swipe left together to show the Bookmark window. More multi-touch gestures are documented in the project wiki linked in the first post. 3. Multi-column reading in PDF is only enabled when reflowing is ON. 4. Probably not, you need to copy fonts into applications/koreader/fonts directory in order to use them in Koreader. |
|
01-21-2015, 11:58 AM | #28 |
Zealot
Posts: 144
Karma: 405567
Join Date: Nov 2012
Device: K3 KPW PB840
|
I still suspect it's only a pitch size problem. I can still see the mini progress bar at the bottom of the screen in the screenshot. Since the pitch size is smaller than actual one there is additional space under the minibar.
|
01-21-2015, 02:18 PM | #29 | |
Connoisseur
Posts: 84
Karma: 1142796
Join Date: Jul 2009
Device: Sony PRS 350, Kobo mini, PB mini
|
Quote:
Likewise, using smem_len gives a segfault. |
|
01-21-2015, 03:14 PM | #30 | ||
Member
Posts: 19
Karma: 10
Join Date: Jan 2015
Device: InkPad 840, InkPad 740
|
Quote:
Quote:
It is working for me, thanks! |
||
Tags |
calibre, epub, koreader, pb742, pdf, pocketbook |
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
KOReader: a document reader for PDF, DJVU, EPUB, FB2, HTML, ... (GPLv3) | hawhill | Kindle Developer's Corner | 1268 | 02-27-2024 12:49 PM |
CBZ plugin interaction with FB2/DjVu plugins - First try at pinpointing | MrWarper | iRex | 2 | 12-11-2011 06:46 AM |
Raccoon Reader - reads ePub, fb2, fb2.zip, txt on WP7 for free | Andrei_Shvydryk | Reading and Management | 0 | 10-31-2011 04:17 PM |
v3 vs. v3+ as a pdf/DjVu reader | hedonism_bot | HanLin eBook | 7 | 11-02-2010 09:16 PM |
New PDF to LRF Tool (for DJVU and CBZ files too) | RWood | Sony Reader | 0 | 08-29-2007 03:13 PM |