Fix invert for pocketbooks by disabling hardware invert (#8803)

With the inkview library inverting the screen seems possible but needs some 
discussion with the developers of Pocketbook. For now disable HWInvert so 
this feature is not broken while we figure out how to change the invert with inkview.
This commit is contained in:
Robert-Jan de Dreu
2022-02-19 19:50:52 +01:00
committed by GitHub
parent e167388e52
commit e5e140d5fd
2 changed files with 5 additions and 2 deletions

2
base

Submodule base updated: 64bdeda85e...91c1285b7e

View File

@@ -42,7 +42,10 @@ local PocketBook = Generic:new{
-- NOTE: Apparently, HW inversion is a pipedream on PB (#6669), ... well, on sunxi chipsets anyway.
-- For which we now probe in fbinfoOverride() and tweak the flag to "no".
-- NTX chipsets *should* work (PB631), but in case it doesn't on your device, set this to "no" in here.
canHWInvert = yes,
--
-- The above comment applied to rendering without inkview. With the inkview library HW inverting the
-- screen is not possible. For now disable HWInvert for all devices.
canHWInvert = no,
-- If we can access the necessary devices, input events can be handled directly.
-- This improves latency (~40ms), as well as power usage - we can spend more time asleep,