http://gpd.hk/gpdp2maxfirmwaredriverbios Aktualisieren Sie das BIOS, bevor Sie es ausführen Offizielles Tool für Windows Das Touchpanel erkennt es nur, wenn es aktualisiert wurde
https://ubuntu-mate.org/download/ Mit einem Tool zum Erstellen einer USB-Speicher-Startdiskette aus einem ISO-Image Boot-Speicher erstellen Befolgen Sie danach die Anweisungen
Führen Sie den Befehl xinput aus Goodix Capacitive TouchScreen id=16 [slave pointer (2)]
Wird angezeigt, xinput set-prop '16' 'Coordinate Transformation Matrix' 0 -1 1 1 0 0 0 0 1 Die Position des Touchpanels kann durch Ausführen korrigiert werden. Wenn Sie sich für eine App registrieren, die automatisch gestartet wird, können Sie sie in einem ausgehärteten Zustand starten
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