Page 1 of 9 123 ... LastLast
Results 1 to 10 of 85

Thread: HOW TO Add Support for KYE, UC-logic, and Waltop Tablets in Ubuntu

  1. #1
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    HOW TO Add Support for KYE, UC-logic, and Waltop Tablets in Ubuntu

    Often rebranded as Aiptek, Genius, Monoprice, Princeton, or Trust tablets amongst other brands.

    Last updated: June 2, 2012


    Preliminaries
    Because of re-branding it is not always obvious what tablet you actually have. You can determine your tablet's OEM Vendor ID and Product ID by entering the following command in a terminal:
    Code:
    lsusb
    and looking for the tablet line in the output.
    Code:
    KYE Systems Vendor ID = 0458
    UC-Logic Vendor ID = 5543
    Waltop Vendor ID = 172F
    The Product ID (essentially the model #) immediately follows the Vendor ID, separated from it by a colon.


    Sources
    DIGImend project
    DIGImend project mediawiki
    [PATCH v2] HID: kye: Add support for 3 tablets
    Ubuntu Community Documentation KernelCompile
    genius mousepen tablet i608 pen does not draw post #45
    HOW TO set up a Waltop tablet in Lucid & Maverick & Natty & Oneiric


    Summary
    The UC-Logic and new KYE tablets are intended to use their HID kernel drivers and evdev as the X driver starting with Natty. The Waltops can use the xf86-input-wacom driver starting with Maverick, however both stylus buttons are treated as the same button unless the Maverick kernel is patched. This is fixed in Natty. See the Waltop HOW TO.

    When we need to patch the kernel to add tablet support we'll start off as if we planned on rolling our own custom kernel. But after patching the kernel rather than recompile the entire kernel we'll just compile and use the patched kernel drivers/modules. This has the advantage of saving quite a bit of time. The disadvantage is the use of the patched "vanilla" modules excludes other Ubuntu specific patches if they are also applied to those modules. That may mean fixes or functionality for some devices may be absent if they depended on Ubuntu kernel patches to the modules. Although unlikely breakage is also possible. You could of course use the Ubuntu Community wiki's Kernel Compile to go ahead and recompile the kernel if you wished.

    The HID section of the kernel does not permit a DKMS implementation of HID modules. The reason is that the generic HID driver hid.ko has a list of devices with out-of-tree or special drivers in it and if the device is not present in the list the hid.ko can not chose a special driver (e.g. hid-kye.ko) for it. This means a kernel update will break your tablet support and there is no way around it. So if you need use of your tablet do not allow kernel updates until you have some time to recompile the modules you need. Nikolai Kondrashov has come up with a way to implement DKMS for HID modules and submitted it to the kernel. So maybe in a future kernel this limitation will be addressed. Update (4-2-12): Jiri Kosina (kernel HID maintainer) is not enthusiastic about the DKMS idea. Instead he suggested trying binding and unbinding modules. However when Nikolai tested this feature it did not work. Currently Jiri and Nick are planning on seeing if they can get it working rather than doing the DKMS.


    Patched pre-Compiled Kernels with KYE, UC-Logic, and Waltop Tablet Support
    Pre-compiled kernels are now available from the DIGImend site. See the project blog post "First kernel packages are out" for details. Instructions are on the DIGImend mediawiki page "Kernel packages".

    The patched kernels are located at kernel-packages in Files on the DIGImend SourceForge site. Pick the one closest to your current kernel, usually the most recent one. You can determine your kernel version by entering in a terminal:
    Code:
    uname -r
    And you can determine whether you have a 32-bit (i386) or 64-bit (amd64) install with:
    Code:
    uname -m
    Then follow the instructions on the DIGImend mediawiki.


    HOW TO Add KYE Tablet Support to Ubuntu's Oneiric and Precise Kernels (also includes the Waltop Pen button fix)
    Genius EasyPen i405X, Genius MousePen i608X, and Genius EasyPen M610X

    I. Available Compiled Kernels with KYE Tablet Support

    Oneiric Ocelot (11.10)
    32-bit
    linux-headers-3.0.0-17-kye_3.0.0-17.30_i386.deb
    linux-image-3.0.0-17-kye_3.0.0-17.30_i386.deb
    * kernel by Nick, provided by Janailson Leite

    64-bit
    linux-headers-3.0.0-16-kye_3.0.0-16.28_amd64.deb
    linux-image-3.0.0-16-kye_3.0.0-16.28_amd64.deb
    * kernel by Nick, link provided by viktoria.s


    II. Compiling the KYE Modules
    The KYE tablets are supported natively by the 3.3 kernel. We'll do everything on the Desktop.

    First download on your Desktop HID-kye-Add-support-for-3-tablets.patch (and the waltop_button_fix_v2.patch if fixing your Waltop) attached below and extract it. The Waltop patch also adds support for 2 models, the Q Pad and PID 0038. Then open a terminal and download your Ubuntu kernel's source code onto your Desktop with the following commands.
    Code:
    cd Desktop
    
    sudo apt-get build-dep --no-install-recommends linux-image-$(uname -r)
    
    apt-get source linux-image-$(uname -r)
    The dependencies can take a while to download. The kernel is about 94 MB and takes a few minutes to download depending on your connection. With Oneiric you'll see something like linux_3.0.0.orig.tar.gz, linux_3.0.0-16.29.dsc, linux_3.0.0-16.29.diff.gz, and linux-3.0.0. If the kernel source code doesn't download then you may need to check in Software Sources in the Ubuntu Software tab if you have the box in front of Source code checked.

    To see the files you want to patch and then compile you can use Nautilus (Places) to go into the kernel's folder (e.g. linux-3.0.0) now on your Desktop and navigate to drivers/hid.

    You'll apply the patch in the terminal using the following commands changing the folder name for Precise (to linux-3.2.0) of course.
    Code:
    cd linux-3.0.0
    
    patch -p1 < ~/Desktop/HID-kye-Add-support-for-3-tablets.patch
    
    (needed if fixing the Waltop pen's buttons or adding the Q Pad or PID 0038 tablets)
    patch -p1 < ~/Desktop/waltop_button_fix_v2.patch
    After the files are patched change directory to the downloaded kernel's source code /drivers/hid directory:
    Code:
    cd drivers/hid
    Now you are ready to compile the HID modules. Use the following command:
    Code:
    make -C/lib/modules/`uname -r`/build M=`pwd` modules
    This compiles all the HID modules, which you don't need, but the compile goes fast even so.

    We want 4 of the compiled modules: hid.ko, hid-kye.ko, usbhid.ko, and usbmouse.ko. First make a backup of your current versions using some extension. You want to be able to restore them from the Recovery Mode command line if you have to.
    Code:
    sudo cp /lib/modules/$(uname -r)/kernel/drivers/hid/hid.ko /lib/modules/$(uname -r)/kernel/drivers/hid/hid.ko.orig
    
    sudo cp /lib/modules/$(uname -r)/kernel/drivers/hid/hid-kye.ko /lib/modules/$(uname -r)/kernel/drivers/hid/hid-kye.ko.orig
    
    sudo cp /lib/modules/$(uname -r)/kernel/drivers/hid/usbhid/usbhid.ko /lib/modules/$(uname -r)/kernel/drivers/hid/usbhid/usbhid.ko.orig
    
    sudo cp /lib/modules/$(uname -r)/kernel/drivers/hid/usbhid/usbmouse.ko /lib/modules/$(uname -r)/kernel/drivers/hid/usbhid/usbmouse.ko.orig
    
    (only if the Waltop patch was applied)
    sudo cp /lib/modules/$(uname -r)/kernel/drivers/hid/usbhid/waltop.ko /lib/modules/$(uname -r)/kernel/drivers/hid/usbhid/waltop.ko.orig
    Now copy the four newly compiled modules into your system kernel's modules directory with:
    Code:
    sudo cp hid.ko /lib/modules/$(uname -r)/kernel/drivers/hid/hid.ko
    
    sudo cp hid-kye.ko /lib/modules/$(uname -r)/kernel/drivers/hid/hid-kye.ko
    
    sudo cp usbhid/usbhid.ko /lib/modules/$(uname -r)/kernel/drivers/hid/usbhid/usbhid.ko
    
    sudo cp usbhid/usbmouse.ko /lib/modules/$(uname -r)/kernel/drivers/hid/usbhid/usbmouse.ko
    
    (only if the Waltop patch was applied)
    sudo cp usbhid/waltop.ko /lib/modules/$(uname -r)/kernel/drivers/hid/usbhid/waltop.ko
    * need for usbmouse.ko from viktoria.s - Nick is dubious that this is needed, if your tablet works without it let me know

    Rebuild all of the module dependencies:
    Code:
    sudo depmod -a
    Then reboot and with luck the KYE tablet should be working.

    Thank you to viktoria.s for testing in Precise.
    Attached Files Attached Files
    Last edited by Favux; June 2nd, 2012 at 07:11 PM.

  2. #2
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOW TO Add Support for KYE, UC-logic, and Waltop Tablets in Ubuntu

    Last updated: April 17, 2012


    Preliminaries
    You can determine your kernel version by entering the following command in a terminal:
    Code:
    uname -r
    You should be able to determine your tablet model by running this command in a terminal:
    Code:
    xinput list

    Summary
    The HOW TO below adds HID kernel driver support for the following 4 UC-Logic tablets: WP4030U, WP5540U, WP8060U, and PF1209. And the following 4 Waltop tablets: Slim Tablet 5.8", Slim Tablet 12.1", Media Tablet 10.6", and Media Tablet 14.1". These models are supported natively in the 2.6.37 kernel. In addition several patches make the HID drivers generally more drawing tablet capable.

    This HOW TO is untested. Several of the patches affect multiple hid drivers beyond hid-uclogic.ko and hid-waltop.ko. This HOW TO does not copy all of the affected compiled drivers into the kernel's modules directory to save time. The assumption is that will not break things. So proceed at your own risk and please provide feed back if you test. If it can not be made to work then compiling an entire custom kernel may be necessary.


    HOW TO Apply the Backported digimend-kernel-patches to Kernel's 2.6.32 (Lucid), 2.6.35 (Maverick), and 2.6.36
    Kernel HID support for 4 UC-Logic (hid-uclogic.ko) and 4 Waltop (hid-waltop.ko) tablets

    We'll do everything on the Desktop using Maverick's 2.6.35 kernel as an example. Change the commands as needed for the kernel you are patching.

    First download on your Desktop the digimend-kernel-patches tar from the DIGImend project site and extract it. Then open a terminal and download your Ubuntu kernel's source code onto your Desktop with the following commands.
    Code:
    cd Desktop
    
    sudo apt-get build-dep --no-install-recommends linux-image-$(uname -r)
    
    apt-get source linux-image-$(uname -r)
    The dependencies can take a while to download. The kernel is about 94 MB and takes a few minutes to download depending on your connection. You'll see something like linux_2.6.35.orig.tar.gz, linux_2.6.35-32.66.dsc, linux_2.6.35-32.66.diff.gz, and linux-2.6.35 if your release is Maverick.

    To see the files you want to patch and then compile you can use Nautilus (Places) to go into the kernel's folder (e.g. linux-2.6.35) now on your Desktop and navigate to drivers/input/hid. You might notice modules such as usbmouse.ko are missing depending on the kernel version. This is because whether a driver is compiled as part of the baseline kernel (not visible) or as a loadable module is determined by the kernel's config file (/boot/grub). These options are decided by the kernel team. Loadable modules are selected with an "m".

    Example 1: digimend-kernel-patches-0.4 tar (12-26-10)
    You'll apply the patches in the terminal using the following commands changing the folder name if using another kernel of course.
    Code:
    cd linux-2.6.35
    
    patch -p1 < ~/Desktop/digimend-kernel-patches-0.4/vanilla/2.6.35/0001-HID-allow-resizing-and-replacing-report-descriptors.patch
    patch -p1 < ~/Desktop/digimend-kernel-patches-0.4/vanilla/2.6.35/0002-HID-rdesc-parser-remove-local-item-size-limit.patch
    patch -p1 < ~/Desktop/digimend-kernel-patches-0.4/vanilla/2.6.35/0003-HID-Add-Tablet-Pick-BTN_STYLUS2-mapping.patch
    patch -p1 < ~/Desktop/digimend-kernel-patches-0.4/vanilla/2.6.35/0004-HID-add-absolute-axis-resolution-calculation.patch
    patch -p1 < ~/Desktop/digimend-kernel-patches-0.4/vanilla/2.6.35/0005-Add-support-for-4-UC-Logic-tablets.patch
    patch -p1 < ~/Desktop/digimend-kernel-patches-0.4/vanilla/2.6.35/0006-Add-support-for-4-Waltop-tablets.patch
    Example 2: digimend-kernel-patches-5 tar (4-16-12)
    As you can see a new patch adds tilt support for Waltops with tilt and another patch adds 3 KYE tablets. Support is also added for an additional UC-Logic tablet and 3 Waltop tablets. You'll apply the patches in the terminal using the following commands changing the folder name if using another kernel of course.
    Code:
    cd linux-2.6.35
    
    patch -p1 < ~/Desktop/digimend-kernel-patches-5/stable/2.6.32.59/0001-HID-allow-resizing-and-replacing-report-descriptors.patch
    patch -p1 < ~/Desktop/digimend-kernel-patches-5/stable/2.6.32.59/0002-HID-rdesc-parser-remove-local-item-size-limit.patch
    patch -p1 < ~/Desktop/digimend-kernel-patches-5/stable/2.6.32.59/0003-HID-Add-Tablet-Pick-BTN_STYLUS2-mapping.patch
    patch -p1 < ~/Desktop/digimend-kernel-patches-5/stable/2.6.32.59/0004-HID-add-absolute-axis-resolution-calculation.patch
    patch -p1 < ~/Desktop/digimend-kernel-patches-5/stable/2.6.32.59/0005-HID-hid-input-Add-digitizer-tilt-usage-support.patch
    patch -p1 < ~/Desktop/digimend-kernel-patches-5/stable/2.6.32.59/0006-Add-support-for-5-UC-Logic-tablets.patch
    patch -p1 < ~/Desktop/digimend-kernel-patches-5/stable/2.6.32.59/0007-Add-support-for-7-Waltop-tablets.patch
    patch -p1 < ~/Desktop/digimend-kernel-patches-5/stable/2.6.32.59/0008-HID-kye-Add-support-for-3-tablets.patch
    Since some of the patches have made their way into the kernel you'll notice that the 3.0.28 and 3.2.9 folders only contain 4 patches (and they are different for each). See post #1 above for links to Oneiric and Precise kernels with the patches already applied.

    After the files are patched change directory to the downloaded kernel's source code /drivers/hid directory:
    Code:
    cd drivers/hid
    Now you are ready to compile the HID modules. Use the following command:
    Code:
    make -C/lib/modules/`uname -r`/build M=`pwd` modules
    This compiles all the HID modules, which you don't need, but the compile goes fast even so.

    We want 5 of the compiled modules: hid.ko, hid-uclogic.ko, hid-waltop.ko, usbhid.ko, and usbmouse.ko. First make a backup of your current versions using some extension. You want to be able to restore them from the Recovery Mode command line if you have to.
    Code:
    sudo cp /lib/modules/$(uname -r)/kernel/drivers/hid/hid.ko /lib/modules/$(uname -r)/kernel/drivers/hid/hid.ko.orig
    
    sudo cp /lib/modules/$(uname -r)/kernel/drivers/hid/hid-kye.ko /lib/modules/$(uname -r)/kernel/drivers/hid/hid-uclogic.ko.orig
    
    sudo cp /lib/modules/$(uname -r)/kernel/drivers/hid/hid-kye.ko /lib/modules/$(uname -r)/kernel/drivers/hid/hid-waltop.ko.orig
    
    sudo cp /lib/modules/$(uname -r)/kernel/drivers/hid/usbhid/usbhid.ko /lib/modules/$(uname -r)/kernel/drivers/hid/usbhid/usbhid.ko.orig
    
    sudo cp /lib/modules/$(uname -r)/kernel/drivers/hid/usbhid/usbmouse.ko /lib/modules/$(uname -r)/kernel/drivers/hid/usbhid/usbmouse.ko.orig
    Now copy the five newly compiled modules into your system kernel's modules directory with:
    Code:
    sudo cp hid.ko /lib/modules/$(uname -r)/kernel/drivers/hid/hid.ko
    
    sudo cp hid-kye.ko /lib/modules/$(uname -r)/kernel/drivers/hid/hid-uclogic.ko
    
    sudo cp hid-kye.ko /lib/modules/$(uname -r)/kernel/drivers/hid/hid-waltop.ko
    
    sudo cp usbhid/usbhid.ko /lib/modules/$(uname -r)/kernel/drivers/hid/usbhid/usbhid.ko
    
    sudo cp usbhid/usbmouse.ko /lib/modules/$(uname -r)/kernel/drivers/hid/usbhid/usbmouse.ko
    Rebuild all of the module dependencies:
    Code:
    sudo depmod -a
    Then reboot and with luck your UC-Logic or Waltop tablet should be working or working better.
    Last edited by Favux; April 17th, 2012 at 09:50 PM.

  3. #3
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOW TO Add Support for KYE, UC-logic, and Waltop Tablets in Ubuntu

    Last updated: March 25, 2012

    In order to use the evdev X driver for tablet support in Lucid and Maverick with our shiny new kernel in post #2 we would need to patch it so that it has most of the functionality of evdev 2.5.99. Unfortunately neither of the two patches currently available at the DIGImend project site's "Evdev patches" in the digimend-evdev-patches-0.1 tar work with Lucid's 2.3.2-5 or Maverick's 2.3.2-6 versions of evdev. This is because one patch is for evdev version 2.0.8-1, which is the Debian Lenny version and the other is for evdev version 2.5.0. The Lucid and Maverick versions lie in between and are too different for either patch to apply to their evdev deb package source code.


    DIGImend patches are available for evdev versions:
    2.0.8-1
    2.5.0


    Natty evdev v. 2.6.0-1 - patching of evdev not needed
    Maverick evdev v. 2.3.2-6
    Lucid evdev v. 2.3.2-5
    Last edited by Favux; March 25th, 2012 at 05:45 PM.

  4. #4
    Join Date
    Oct 2012
    Beans
    1

    Re: HOW TO Add Support for KYE, UC-logic, and Waltop Tablets in Ubuntu

    So after doing depmod, does we need to compile the kernel? I follow your step but it's not working.

    Thanks before

  5. #5
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOW TO Add Support for KYE, UC-logic, and Waltop Tablets in Ubuntu

    Hi p1xelbud,

    Welcome to Ubuntu forums!


    No. If the modules compiled successfully and you copied them into place correctly a tablet supported by the patches should start working after a reboot. Although occasionally it take a few reboots for things to shake out.

    That's the idea of the HOW TO. It is a short cut to compiling the entire kernel.
    Last edited by Favux; October 5th, 2012 at 02:52 PM.

  6. #6
    Join Date
    Sep 2011
    Beans
    23

    Re: HOW TO Add Support for KYE, UC-logic, and Waltop Tablets in Ubuntu

    Greetings, and sorry for the inconvenience but I wonder if I could get some help with a Kanvus tablet, The H85 is not on the list of supported tablets.

    Previously used WizardPen 0.8.1 driver for this tablet will work on a Debian 6, 32bit. But when you start using Kubuntu 4.12 amd64 (need to improve the support of proprietary bus) I lose the ability to use this driver.

    A few hours ago I sent a diagnosis with the specifications of the tablet, and I wonder: Will there be simulated or support for this tablet with current driver components? If I can use with this driver, please tell me how? (I'm way too novice to compile kernel)

    The tablet has specifications very paresidas to those shown by UC-Logic Tablet TWHA60 by Monoprince (5543:0781), but the H85 is 5543:0782 (UC-Logic from what I can see)

    If it is useful here is the data used in the configuration of H85 with 70-wizardpen.conf driver, and I see that the syntax is similar.

    Code:
    Section "InputClass"
    **** Identifier "WizardPen class"
    **** MatchIsTablet "on"
    # MatchVendor "UC-LOGIC | H850S | KYE Systems | Ace Cad"
    **** MatchProduct "H850S"
    **** MatchDevicePath "/ dev / input / event *"
    **** Driver "wizardpen"
    EndSection
    
    Section "InputClass"
    **** Identifier "WizardPen ignore mouse dev class"
    **** MatchIsTablet "on"
    # MatchVendor "UC-LOGIC | H850S | KYE Systems | Ace Cad"
    **** MatchProduct "H850S"
    **** MatchDevicePath "/ dev / input / mouse *"
    **** Option "Ignore" "yes"
    EndSection
    Thanks for any help you can give.

  7. #7
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOW TO Add Support for KYE, UC-logic, and Waltop Tablets in Ubuntu

    Hi Muy-burro,

    I saw your submission to DIGImend-devel. That was the correct thing to do because the 0782 looks like a new UC-Logic tablet (5543).

    Kanvus H85 tablet (5543:0782) = UC-Logic H850S

    lsusb:
    Code:
    Bus 003 Device 016: ID 5543:0782 UC-Logic Technology Corp.
    xinput-list:
    Code:
    ⎜   ↳ H850S                                     id=14   [slave  pointer  (2)]
    ⎜   ↳ H850S                                     id=15   [slave  pointer  (2)]
    Looks like maybe ID 15 is the pen. Does the tablet come with a mouse?

    Does anything happen when you use the pen on the tablet. If so what?

  8. #8
    Join Date
    Sep 2011
    Beans
    23

    Re: HOW TO Add Support for KYE, UC-logic, and Waltop Tablets in Ubuntu

    1) Yes, id = 15 is the pen, xinput --test 14 does not send results.

    2) No, the tablet does not come with mouse.

    3) Using xinput --test 15 are many movements, but do not move the mouse pointer on the screen, not even to the upper left corner. Although I notice canvios brightness on the screen, what the computer does when it passes only from inactive to active (PowerManager I guess).

    The results of xinput --test 15 are in a file called xinput_test.txt, and all I could find on the tablet is stored in a file called kanvush85_digimend_report.txt.

    If you need more information from the tablet, tell me what you need.

    Thanks for the help.

  9. #9
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOW TO Add Support for KYE, UC-logic, and Waltop Tablets in Ubuntu

    Sure.

    Let's confirm the tablet pen is on the evdev driver. Make sure the ID # has not changed:
    Code:
    xinput list-props 15
    You could also find the driver by looking at Xorg.0.log in /var/log.

    If the pen is on the evdev driver but not working we could quick check if maybe it works on the wacom X driver.

    I just compiled wizardpen in Precise (12.04) and it compiled and installed. I have no idea if it works in Precise. We would have to test it.

  10. #10
    Join Date
    Sep 2011
    Beans
    23

    Re: HOW TO Add Support for KYE, UC-logic, and Waltop Tablets in Ubuntu

    xinput list-props 15
    Code:
    Device 'H850S':
            Device Enabled (131):   1
            Coordinate Transformation Matrix (133): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
            Device Accel Profile (253):     0
            Device Accel Constant Deceleration (254):       1.000000
            Device Accel Adaptive Deceleration (255):       1.000000
            Device Accel Velocity Scaling (256):    10.000000
            Device Product ID (248):        21827, 1922
            Device Node (249):      "/dev/input/event11"
            Evdev Axis Inversion (572):     0, 0
            Evdev Axis Calibration (573):   <no items>
            Evdev Axes Swap (574):  0
            Axis Labels (575):      "Abs X" (522), "Abs Y" (523), "Abs Z" (570), "Abs Rotary X" (571), "Abs Pressure" (524)
            Button Labels (576):    "Button Left" (134), "Button Middle" (135), "Button Right" (136), "Button Wheel Up" (137), "Button Wheel Down" (138), "Button Horiz Wheel Left" (139), "Button Horiz Wheel Right" (140), "Button Side" (567), "Button Extra" (568), "Button Forward" (569), "Button Unknown" (565), "Button Unknown" (565), "Button Unknown" (565), "Button Unknown" (565)
            Evdev Middle Button Emulation (577):    0
            Evdev Middle Button Timeout (578):      50
            Evdev Third Button Emulation (579):     0
            Evdev Third Button Emulation Timeout (580):     1000
            Evdev Third Button Emulation Button (581):      3
            Evdev Third Button Emulation Threshold (582):   20
            Evdev Wheel Emulation (583):    0
            Evdev Wheel Emulation Axes (584):       0, 0, 4, 5
            Evdev Wheel Emulation Inertia (585):    10
            Evdev Wheel Emulation Timeout (586):    200
            Evdev Wheel Emulation Button (587):     4
            Evdev Drag Lock Buttons (588):  0
    Xorg.0.log show:
    Code:
    [123009.773] (**) Option "xkb_rules" "evdev"
    [123009.773] (**) Option "xkb_model" "pc105"
    [123009.773] (**) Option "xkb_layout" "us"
    [123011.965] (II) XKB: reuse xkmfile /var/lib/xkb/server-B3142C282A6EB2AFBD07343CF770AD5105004170.xkm
    [123012.550] (II) XKB: reuse xkmfile /var/lib/xkb/server-B3142C282A6EB2AFBD07343CF770AD5105004170.xkm
    [128304.053] (II) XKB: generating xkmfile /var/lib/xkb/server-DF0FDA660FAC626442D028C3B1CD301120D8A095.xkm
    [129998.869] (II) config/udev: Adding input device H850S (/dev/input/mouse2)
    [129998.869] (II) No input driver specified, ignoring this device.
    [129998.869] (II) This device may have been added with another device file.
    [129998.870] (II) config/udev: Adding input device H850S (/dev/input/event12)
    [129998.870] (**) H850S: Applying InputClass "evdev pointer catchall"
    [129998.870] (**) H850S: Applying InputClass "evdev keyboard catchall"
    [129998.871] (II) Using input driver 'evdev' for 'H850S'
    [129998.871] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [129998.871] (**) H850S: always reports core events
    [129998.871] (**) evdev: H850S: Device: "/dev/input/event12"
    [129998.871] (--) evdev: H850S: Vendor 0x5543 Product 0x782
    [129998.871] (--) evdev: H850S: Found 3 mouse buttons
    [129998.871] (--) evdev: H850S: Found scroll wheel(s)
    [129998.871] (--) evdev: H850S: Found relative axes
    [129998.871] (--) evdev: H850S: Found x and y relative axes
    [129998.871] (--) evdev: H850S: Found keys
    [129998.871] (II) evdev: H850S: Configuring as mouse
    [129998.871] (II) evdev: H850S: Configuring as keyboard
    [129998.871] (II) evdev: H850S: Adding scrollwheel support
    [129998.871] (**) evdev: H850S: YAxisMapping: buttons 4 and 5
    [129998.871] (**) evdev: H850S: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [129998.871] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.0/usb3/3-1/3-1:1.1/input/input48/event12"
    [129998.871] (II) XINPUT: Adding extended input device "H850S" (type: KEYBOARD, id 14)
    [129998.871] (**) Option "xkb_rules" "evdev"
    [129998.871] (**) Option "xkb_model" "pc105"
    [129998.871] (**) Option "xkb_layout" "us"
    [129998.872] (II) evdev: H850S: initialized for relative axes.
    [129998.872] (**) H850S: (accel) keeping acceleration scheme 1
    [129998.872] (**) H850S: (accel) acceleration profile 0
    [129998.872] (**) H850S: (accel) acceleration factor: 2.000
    [129998.872] (**) H850S: (accel) acceleration threshold: 4
    [129998.901] (II) config/udev: Adding input device H850S (/dev/input/event11)
    [129998.902] (**) H850S: Applying InputClass "evdev pointer catchall"
    [129998.902] (**) H850S: Applying InputClass "evdev tablet catchall"
    [129998.902] (II) Using input driver 'evdev' for 'H850S'
    [129998.902] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [129998.902] (**) H850S: always reports core events
    [129998.902] (**) evdev: H850S: Device: "/dev/input/event11"
    [129998.902] (--) evdev: H850S: Vendor 0x5543 Product 0x782
    [129998.902] (--) evdev: H850S: Found 10 mouse buttons
    [129998.902] (--) evdev: H850S: Found scroll wheel(s)
    [129998.902] (--) evdev: H850S: Found relative axes
    [129998.902] (--) evdev: H850S: Found x and y relative axes
    [129998.902] (--) evdev: H850S: Found absolute axes
    [129998.902] (--) evdev: H850S: Found x and y absolute axes
    [129998.902] (--) evdev: H850S: Found absolute tablet.
    [129998.902] (II) evdev: H850S: Configuring as tablet
    [129998.902] (II) evdev: H850S: Adding scrollwheel support
    [129998.902] (**) evdev: H850S: YAxisMapping: buttons 4 and 5
    [129998.902] (**) evdev: H850S: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [129998.902] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.0/usb3/3-1/3-1:1.0/input/input47/event11"
    [129998.902] (II) XINPUT: Adding extended input device "H850S" (type: TABLET, id 15)
    [129998.902] (WW) evdev: H850S: touchpads, tablets and touchscreens ignore relative axes.
    [129998.902] (II) evdev: H850S: initialized for absolute axes.
    [129998.903] (**) H850S: (accel) keeping acceleration scheme 1
    [129998.903] (**) H850S: (accel) acceleration profile 0
    [129998.903] (**) H850S: (accel) acceleration factor: 2.000
    [129998.903] (**) H850S: (accel) acceleration threshold: 4
    [129998.907] (II) config/udev: Adding input device H850S (/dev/input/mouse1)
    [129998.907] (II) No input driver specified, ignoring this device.
    [129998.907] (II) This device may have been added with another device file.
    About wizardpen driver, there is a bug even detailed in the PPA, which prevents me to compile an amd64 driver.

    Warning: I have nothing set for this tablet work as explained in the Digimend Wiki or explained here.

Page 1 of 9 123 ... LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •