Como posso obter um touch screen ELO para funcionar?

1

Comprei uma nova máquina de PDV touchscreen e instalei o fedora 14 nela. Eu não consegui fazer a tela de toque funcionar, já que os fabricantes de toque do ELO têm drivers apenas para versões do kernel 2.6.14. Mesmo que o Fedora 14 tenha suporte de driver pré-compilado no nível do kernel para telas sensíveis ao toque do ELO, não consigo fazê-lo funcionar.

Eu também tentei a configuração xorg.conf , mas nada está funcionando.

Section "Files"  
        FontPath        "/usr/share/fonts/X11/misc"  
        FontPath        "/usr/X11R6/lib/X11/fonts/misc"  
        FontPath        "/usr/share/fonts/X11/cyrillic"  
        FontPath        "/usr/X11R6/lib/X11/fonts/cyrillic"  
        FontPath        "/usr/share/fonts/X11/100dpi/:unscaled"  
        FontPath        "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"  
        FontPath        "/usr/share/fonts/X11/75dpi/:unscaled"  
        FontPath        "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"  
        FontPath        "/usr/share/fonts/X11/Type1"  
        FontPath        "/usr/X11R6/lib/X11/fonts/Type1"  
        FontPath        "/usr/share/fonts/X11/100dpi"  
        FontPath        "/usr/X11R6/lib/X11/fonts/100dpi"  
        FontPath        "/usr/share/fonts/X11/75dpi"  
        FontPath        "/usr/X11R6/lib/X11/fonts/75dpi"  
#path to defoma fonts  
FontPath        "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"  
 EndSection  
 Section "Module"  
 Load    "i2c"  
 Load    "bitmap"  
 Load    "ddc"  
 Load    "dri"  
 Load      "extmod"  
 Load    "freetype"  
 Load    "glx"  
 Load    "int10"  
 Load    "vbe"  
  EndSection  

Section "InputDevice"  
Identifier      "Generic Keyboard"  
Driver          "kbd"  
Option          "CoreKeyboard"  
Option          "XkbRules"      "xorg"  
Option          "XkbModel"      "pc104"  
Option          "XkbLayout"     "us"  
EndSection  

Section "InputDevice"  
Identifier      "Configured Mouse"  
Driver          "mouse"  
Option          "CorePointer"  
Option          "Device"                  "/dev/input/mice"  
Option          "Protocol"              "ImPS/2"  
Option          "Emulate3Buttons"       "true"  
EndSection  

Section "InputDevice"  
Identifier "ELO touchscreen"  
Driver "elographics"  
Option "Device" "/dev/ttyS0"  
Option  "MinX" "375"  
Option  "MaxX" "3700"  
Option  "MinY" "500"  
Option  "MaxY" "3590"  
Option  "UntouchDelay"  "10"  
Option  "ReportDelay"   "10"  
Option  "SendCoreEvents"        "yes"  
Option  "ScreenNumber"  "0"  
Option  "ButtonNumber"  "1"  
EndSection  

Section "Device"  
Identifier      "Intel"  
Driver          "intel"  
BusID           "PCI:0:2:0"  
EndSection

Section "Monitor"  
Identifier      "LCD Touch"  
Option          "DPMS"  
EndSection  

Section "Screen"  
Identifier      "Default Screen"  
Device          "ATI Technologies Inc ATI Default Card"  
Monitor         "ELO Touch"   

        DefaultDepth    24  
        SubSection "Display"  
        Depth           1  
        Modes "800x600"  
        EndSubSection  
        SubSection "Display"  
Depth           4  
Modes           "800x600" "720x400" "640x480"  
EndSubSection  
SubSection "Display"  
Depth           8  
Modes           "800x600" "720x400" "640x480"  
EndSubSection  
SubSection "Display"  
Depth           15  
Modes           "800x600" "720x400" "640x480"  
EndSubSection  
SubSection "Display"  
Depth           16  
Modes           "800x600" "720x400" "640x480"  
EndSubSection  
SubSection "Display"  
Depth           24  
Modes           "800x600" "720x400" "640x480"  
EndSubSection  
EndSection  

Section "ServerLayout"  
Identifier      "Default Layout"  
Screen          "Default Screen"  
InputDevice     "Generic Keyboard"  
InputDevice     "Configured Mouse"  
InputDevice     "ELO touchscreen" "SendCoreEvents"  
EndSection  

Section "DRI"  
Mode    0666  
EndSection
    
por Deepak 21.03.2011 / 12:49

1 resposta

1

O mantenedor do X Input Device para o Fedora & O X.Org upstream postou um guia para a configuração da tela sensível ao toque do Elographics no Linux .

    
por 04.08.2012 / 09:21