You are not logged in.

#1 2009-03-18 05:02:56

thayer
Fellow
From: Vancouver, BC
Registered: 2007-05-20
Posts: 1,560
Website

Aspire One - touchpad tapping doesn't work

As per the title, I can't get the touchpad tap or double-tap to work on my new AA1 AOD150.  The touchpad buttons work OK however.  Has anyone else experienced this on these or similar devices? 

I'm using the stock kernel with the following xorg.conf:

Section "ServerLayout"
    Identifier  "AA1Xorg"
    Screen   0  "AA1Screen" 0 0
    InputDevice "AA1Keyboard"       "CoreKeyboard"
    InputDevice "LogitechMX518"     "CorePointer"
    InputDevice "SynapticsTouchpad" "AlwaysCore"
    Option      "BlankTime"         "0"
    Option      "StandbyTime"       "0"
    Option      "SuspendTime"       "0"         # disable all other forms of power save
    Option      "OffTime"           "10"        # turn off DPMS-capable  monitor after x mins
EndSection

Section "ServerFlags"
    Option  "AIGLX"                 "false"
    Option  "AutoAddDevices"        "false"     # false to disabl hal hotplugging 
    Option  "AllowMouseOpenFail"    "true"      # load Xorg even if mouse input not found
EndSection

Section "Files"
    ModulePath  "/usr/lib/xorg/modules"
    FontPath    "/usr/share/fonts/misc"
    FontPath    "/usr/share/fonts/75dpi"
    FontPath    "/usr/share/fonts/100dpi"
    FontPath    "/usr/share/fonts/Type1"
    FontPath    "/usr/share/fonts/TTF"
    FontPath    "/usr/share/fonts/artwiz-fonts"
    FontPath    "/usr/share/fonts/local"
EndSection

Section "Module"
    Load  "ddc"
    Load  "dbe"
    Load  "dri"
    Load  "extmod"
    Load  "glx"
    Load  "bitmap"
    Load  "freetype"
    Load  "synaptics"
EndSection

Section "InputDevice"
    Identifier  "AA1Keyboard"
    Driver      "kbd"
    Option      "CoreKeyboard"
    Option      "XkbModel" "pc105"
    Option      "XkbLayout" "us"
EndSection

Section "InputDevice"
    Identifier  "LogitechMX518"
    Driver      "mouse"
    Option        "Device"            "/dev/input/mice"
    Option      "Protocol"          "ExplorerPS/2"    # options: ExplorerPS/2, IMPS/2, auto, USB (Exp. req'd for side-buttons)
    Option        "ZAxisMapping"      "4 5"
    Option        "Buttons"           "5"
    Option      "ButtonMapping"     "1 2 3 8 9"
    Option      "Emulate3Buttons"   "no"

EndSection

Section "InputDevice"
    Identifier  "SynapticsTouchpad"
    Driver      "synaptics"
   #Option      "Device"            "/dev/input/mice"
    Option      "Device"            "/dev/psaux"
    Option      "Protocol"          "auto-dev"
    Option      "ZAxisMapping"      "4 5 6 7"
    Option      "SHMConfig"         "true"  # configurable at runtime? security risk if on
    Option      "LeftEdge"          "1700"  # x coord left
    Option      "RightEdge"         "5300"  # x coord right
    Option      "TopEdge"           "1700"  # y coord top
    Option      "BottomEdge"        "4200"  # y coord bottom
    Option      "FingerLow"         "25"    # pressure below this level triggers release
    Option      "FingerHigh"        "30"    # pressure above this level triggers touch
    Option      "MaxTapTime"        "180"   # max time in ms for detecting tap
    Option      "MaxTapMove"        "220"
    Option      "VertEdgeScroll"    "true"  # enable vertical scroll zone
    Option      "HorizEdgeScroll"   "true"  # enable horizontal scroll zone
    Option      "CornerCoasting"    "true"  # enable continuous scroll with finger in corner
    Option      "CoastingSpeed"     "0.30"  # corner coasting speed
    Option      "VertScrollDelta"   "100"   # edge-to-edge scroll distance of the vertical scroll
    Option      "HorizScrollDelta"  "100"   # edge-to-edge scroll distance of the horizontal scroll
    Option      "MinSpeed"          "0.09"  # speed factor for low pointer movement
    Option      "MaxSpeed"          "0.18"  # maximum speed factor for fast pointer movement
    Option      "AccelFactor"       "0.0015"    # acceleration factor for normal pointer movements
    #Option      "VertTwoFingerScroll"   "true"    # vertical scroll anywhere with two fingers
    #Option      "HorizTwoFingerScroll"  "true"    # horizontal scroll anywhere with two fingers
EndSection

Section "Monitor"
    Identifier  "AA1Monitor"
    VendorName  "Acer"
    Option      "DPMS" "true"
    HorizSync   28.0 - 96.0
    VertRefresh 50.0 - 75.0
    Modeline    "1024x600" 50.40 1024 1048 1184 1344 600 600 619 625
   #DisplaySize 346 203 # 075 dpi @ 1024x600
    DisplaySize 261 152 # 100 dpi @ 1024x600
EndSection

Section "Device"
    Identifier  "Intel945"
    Driver      "intel"
    BusID       "PCI:0:2:0"
    Option      "Clone" "true"
    Option      "MonitorLayout" "LVDS,VGA"
    Option      "AccelMethod"   "exa"           # enables newer EXA based 2D acceleration
    Option      "MigrationHeuristic" "greedy"   # alternate pixmap migration for EXA
EndSection

Section "Device"
    Identifier  "Fallback"
    Driver      "vesa"
    VendorName  "All"
    BoardName   "All"
EndSection

Section "Screen"
    Identifier "AA1Screen"
    Device     "Intel945"
    Monitor    "AA1Monitor"
    DefaultColorDepth 24
    DefaultDepth 24
    SubSection "Display"
        Viewport 0 0
        Depth 24
        Modes "1024x600" "800x600" "640x480"
        Virtual 1024 600
    EndSubSection
EndSection

Section "DRI"
    Mode 0666
EndSection

Last edited by thayer (2009-03-18 05:04:06)


thayer williams ~ cinderwick.ca

Offline

#2 2009-03-18 05:29:05

AndyRTR
Developer
From: Magdeburg/Germany
Registered: 2005-10-07
Posts: 1,641

Re: Aspire One - touchpad tapping doesn't work

I'm running stable Xorg with had configuration. No problems here. What's in your Xorg.0.log? Wanna change to hal config? Then I can post my policy file.

Offline

#3 2009-03-18 09:43:05

ichbinesderelch
Member
Registered: 2008-01-17
Posts: 203

Re: Aspire One - touchpad tapping doesn't work

with xserver 1.5 you have to enable tapping in synaptic section seperatly in xorg with:
        Option  "TapButton1"    "1"   
        Option  "TapButton2"    "2"

Offline

#4 2009-03-18 19:01:51

thayer
Fellow
From: Vancouver, BC
Registered: 2007-05-20
Posts: 1,560
Website

Re: Aspire One - touchpad tapping doesn't work

ichbinesderelch wrote:

with xserver 1.5 you have to enable tapping in synaptic section seperatly in xorg with:
        Option  "TapButton1"    "1"   
        Option  "TapButton2"    "2"

Ah ha! Thanks, I'll give that a shot when I get back to my office.  Thanks too Andy, if all else fails I may have to go with hal/xorg, but I'm leaving that as a last resort.

Update: That worked great, thanks again ichbinesderelch!

Last edited by thayer (2009-03-19 01:18:16)


thayer williams ~ cinderwick.ca

Offline

#5 2009-03-19 11:14:11

ichbinesderelch
Member
Registered: 2008-01-17
Posts: 203

Re: Aspire One - touchpad tapping doesn't work

great, youre welcome smile

Offline

Board footer

Powered by FluxBB