http://gpd.hk/gpdp2maxfirmwaredriverbios Mettez à jour le BIOS avant d'exécuter Outil officiel pour Windows Le panneau tactile ne reconnaît pas à moins d'être mis à jour
https://ubuntu-mate.org/download/ Avec un outil pour créer un disque de démarrage de mémoire USB à partir d'une image ISO Créer une mémoire de démarrage Après cela, suivez les instructions
Exécuter la commande xinput Goodix Capacitive TouchScreen id=16 [slave pointer (2)]
Est affiché, xinput set-prop '16' 'Coordinate Transformation Matrix' 0 -1 1 1 0 0 0 0 1 La position de l'écran tactile peut être corrigée en exécutant. Si vous vous inscrivez pour une application qui démarre automatiquement, vous pouvez la démarrer dans un état guéri
xinput set-prop `xinput|grep Goodix|grep pointer|awk -F'id=' '{print $2}'|awk '{print $1}'` 'Coordinate Transformation Matrix' 0 -1 1 1 0 0 0 0 1
script.sh
#!/bin/sh
case $1 in
"help" )
echo left of help
;;
"left"|"-l" )
xrandr -o left
xinput set-prop `xinput|grep Goodix|grep pointer|awk -F'id=' '{print $2}'|awk '{print $1}'` 'Coordinate Transformation Matrix' -1 0 1 0 -1 1 0 0 1
;;
"right"|"-r" )
xrandr -o right
xinput set-prop `xinput|grep Goodix|grep pointer|awk -F'id=' '{print $2}'|awk '{print $1}'` 'Coordinate Transformation Matrix' 1 0 0 0 1 0 0 0 1
;;
* )
xrandr -o normal
xinput set-prop `xinput|grep Goodix|grep pointer|awk -F'id=' '{print $2}'|awk '{print $1}'` 'Coordinate Transformation Matrix' 0 -1 1 1 0 0 0 0 1
esac
export MOZ_USE_XINPUT2=1
exit
#xinput set-prop '16' 'Coordinate Transformation Matrix' 0 -1 1 1 0 0 0 0 1
xinput set-prop `xinput|grep Goodix|grep pointer|awk -F'id=' '{print $2}'|awk '{print $1}'` 'Coordinate Transformation Matrix' 0 -1 1 1 0 0 0 0 1
export MOZ_USE_XINPUT2=1