LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Hardware (https://www.linuxquestions.org/questions/linux-hardware-18/)
-   -   ibm touchscreen xorg (https://www.linuxquestions.org/questions/linux-hardware-18/ibm-touchscreen-xorg-636050/)

davidcollins001 04-17-2008 01:40 PM

ibm touchscreen xorg
 
Hi,

I have an IBM transnote that I have been playing around on. I tried before to get the touch screen to work with no joy, but I though I would give it another go. The device is a microtouch device, and it appears to be able to use the mutouch driver - at least when starting X it doesn't complain about this driver. The device does work because I can see output from /dev/ttyS0. I have been on the transnote wiki where other people have been able to get the touch screen working but nothing is working for me.

I have found howtos that work with XFree86 but it apparently works with xorg too, which is what I am using, this one is the most concise; http://www-1.ibm.com/support/docview...d=pos1R1002913. I understand that xorg requires a pointer device so a touch screen would need to be a secondary pointer device, I am not sure if this requires extra setup?

If anyone can help me it would be much appreciated, here is my /etc/X11/xorg.conf file

Code:

Section "InputDevice"
        Identifier      "Generic Keyboard"
        Driver          "kbd"
        Option          "XkbRules"      "xorg"
        Option          "XkbModel"      "pc105"
        Option          "XkbLayout"    "gb"
EndSection

Section "InputDevice"
        Identifier      "Configured Mouse"
        Driver          "mouse"
EndSection

Section "InputDevice"
        Identifier "Touchscreen"
        Driver "mutouch"
        Option "Type" "finger"
        Option  "Device" "/dev/ttyS0"
        Option  "MinX"  "13"
        Option  "MaxX"  "1006"
        Option  "MinY"  "1000"
        Option  "MaxY"  "20"
        Option  "ScreenNo"      "0"
        Option  "SendCoreEvents" "yes"
EndSection

Section "Device"
        Identifier      "Configured Video Device"
EndSection

Section "Monitor"
        Identifier      "Configured Monitor"
EndSection

Section "Screen"
        Identifier      "Default Screen"
        Monitor        "Configured Monitor"
EndSection

Section "ServerLayout"
        Identifier  "Default Layout"
        Screen      "Default Screen"
        InputDevice  "Generic Keyboard" "CoreKeyboard"
        InputDevice  "Configured Mouse" "CorePointer"
        InputDevice  "Touchscreen" "SendCoreEvents"
EndSection



All times are GMT -5. The time now is 09:57 AM.