ELO 터치 스크린을 올바르게 작동시키는 방법은 무엇입니까?

ELO 터치 스크린을 올바르게 작동시키는 방법은 무엇입니까?

나는 새로운 터치 스크린 POS 기계를 구입하고 거기에 fedora 14를 설치했습니다. ELO 터치 제조업체에서는 커널 버전 2.6.14용 드라이버만 제공하기 때문에 터치 스크린이 작동하지 않습니다. Fedora 14에는 ELO 터치스크린에 대한 커널 수준 드라이버 지원이 미리 컴파일되어 있지만 작동할 수 없습니다.

xorg.conf또한 구성을 시도했지만 아무것도 작동하지 않습니다.

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

답변1

Fedora 및 X.Org 업스트림 X 입력 장치 관리자가 출시되었습니다.Linux의 Elgraphics 터치스크린 설정 가이드.

관련 정보