Jump to content

Screen Calibration: Difference between revisions

From postmarketOS Wiki
m Ollieparanoid moved page Screen-Calibration to Screen Calibration
Screen calibration: Weston: Remove ENV{WL_CALIBRATION} from the normal example, add a new weston-calibrator sub-section.
Line 17: Line 17:
* Copy [https://github.com/postmarketOS/pmbootstrap/blob/master/aports/device/device-lg-mako/90-android-touch-dev.rules 90-android-touch-dev.rules] from <code>device-lg-mako</code> to your device's aport. Replace <code>touch_dev</code> with your touch device name. Adjust the <code>APKBUILD</code>, so it gets installed properly ([https://github.com/postmarketOS/pmbootstrap/blob/master/aports/device-lg-mako/APKBUILD Example])
* Copy [https://github.com/postmarketOS/pmbootstrap/blob/master/aports/device/device-lg-mako/90-android-touch-dev.rules 90-android-touch-dev.rules] from <code>device-lg-mako</code> to your device's aport. Replace <code>touch_dev</code> with your touch device name. Adjust the <code>APKBUILD</code>, so it gets installed properly ([https://github.com/postmarketOS/pmbootstrap/blob/master/aports/device-lg-mako/APKBUILD Example])


<pre># use 'weston-calibrator' to calibrate the touchscreen!
<pre>
SUBSYSTEM==&quot;input&quot;, ATTRS{name}==&quot;touch_dev&quot;, \
SUBSYSTEM==&quot;input&quot;, ATTRS{name}==&quot;touch_dev&quot;, \
ENV{ID_INPUT}=&quot;1&quot;, ENV{ID_INPUT_TOUCHSCREEN}=&quot;1&quot; \
ENV{ID_INPUT}=&quot;1&quot;, ENV{ID_INPUT_TOUCHSCREEN}=&quot;1&quot;
ENV{WL_CALIBRATION}=&quot;0.982113 -0.006129 1.983124 -0.002560 1.000800 -6.012451&quot;</pre>
</pre>
Reload udev rules:
Reload udev rules:


Line 27: Line 27:
# Re-apply those rules on all devices
# Re-apply those rules on all devices
udevadm trigger</source>
udevadm trigger</source>
* This calibration may just work fine (it has been reported, that it works on <code>hammerhead</code>). If it does, you are done here. Otherwise continue for the calibration.
* This calibration will probably just work fine. If it does, you are done here, otherwise read on.
 
=== weston-calibrator (needed for resistive touch screens) ===
* Connect to your phone via SSH
* Connect to your phone via SSH
* Get a root shell: <code>sudo su -</code> (Because right now, Weston runs as root)
* Get a root shell: <code>sudo su -</code> (Because right now, Weston runs as root)
* Run <code>weston-calibrator</code> as root
* Run <code>weston-calibrator</code> as root
* Adjust your udev rules-file to the output from <code>weston-calibrator</code>
* Adjust your udev rules-file to the output from <code>weston-calibrator</code> ([https://github.com/postmarketOS/pmbootstrap/blob/bf6f5cb884d9e2eb8c684bb04f9c3e9d634278f8/aports/device/device-nokia-rx51/udev/90-touchscreen-dev.rules example]).

Revision as of 18:26, 20 September 2017

Framebuffer

On most Android devices, a somewhat working framebuffer is required to get Weston and other Wayland compositors running. The alternative to framebuffer would be DRI.

If your framebuffer does not work out of the box, try the following:

  • Run this to set the framebuffer resolution: cat /sys/class/graphics/fb0/modes > /sys/class/graphics/fb0/mode
  • Boot TWRP/Android and read out the correct framebuffer configurations from the /sys... paths and try to set them in pmOS
  • If you made it work, create an initfs hook, that instantly sets the framebuffer right. Example

If the screen looks laggy, it might be a known issue with refresh rate. It can be solved by hardcoding the refresh rate in the video driver, see mdss_fb_refresh_rate.patch.

Weston

  • Make sure, that Weston runs on the device
  • Look in /tmp/weston.log (via SSH) for the touch device name. For lg-mako, the name is touch_dev, but it may be different for your device.
  • Copy 90-android-touch-dev.rules from device-lg-mako to your device's aport. Replace touch_dev with your touch device name. Adjust the APKBUILD, so it gets installed properly (Example)
SUBSYSTEM=="input", ATTRS{name}=="touch_dev", \
ENV{ID_INPUT}="1", ENV{ID_INPUT_TOUCHSCREEN}="1"

Reload udev rules:

# Reload all rules
udevadm control --reload
# Re-apply those rules on all devices
udevadm trigger
  • This calibration will probably just work fine. If it does, you are done here, otherwise read on.

weston-calibrator (needed for resistive touch screens)

  • Connect to your phone via SSH
  • Get a root shell: sudo su - (Because right now, Weston runs as root)
  • Run weston-calibrator as root
  • Adjust your udev rules-file to the output from weston-calibrator (example).