 |
 |
 |
 |
| Hardware & Laptops Help with your hardware, including laptop issues |

1st April 2009, 01:48 AM
|
 |
Registered User
|
|
Join Date: Apr 2005
Location: Littleton, CO
Age: 28
Posts: 2,855

|
|
|
Setting up my touchscreen
I'm using fedora 10 on my shiny new tx2510us laptop. This is a tabletpc, meaning it's a touchscreen. I'm trying to follow the direction here, with the exception that I installed linuxwacom from the repos.
I ran Unfortunately the output did not include the device info for usage in /etc/X11/xorg.conf. Output as follows.
Code:
wacom: v1.48:USB Wacom Graphire and Wacom Intuos tablet driver
Any ideas how I can ID what /dev location to use in my xorg.conf? Here is some additional info.
Code:
lsusb -v | less
Bus 007 Device 003: ID 056a:0093 Wacom Co., Ltd
Device Descriptor:
bLength 18
bDescriptorType 1
bcdUSB 1.10
bDeviceClass 0 (Defined at Interface level)
bDeviceSubClass 0
bDeviceProtocol 0
bMaxPacketSize0 8
idVendor 0x056a Wacom Co., Ltd
idProduct 0x0093
bcdDevice 4.03
iManufacturer 1 Tablet
iProduct 2 ISD-V4
iSerial 0
bNumConfigurations 1
Configuration Descriptor:
bLength 9
bDescriptorType 2
wTotalLength 59
bNumInterfaces 2
bConfigurationValue 1
lsusb
Bus 007 Device 003: ID 056a:0093 Wacom Co., Ltd
lsmod | grep wacom
wacom 19328 0
EDIT: I do not have a /dev/input/wacom
Last edited by leadgolem; 1st April 2009 at 01:55 AM.
|

16th July 2009, 12:02 PM
|
 |
Registered User
|
|
Join Date: Apr 2005
Location: Littleton, CO
Age: 28
Posts: 2,855

|
|
Update: After updating to fedora 11 I'm having slightly better luck.
Code:
dmesg | grep Wacom
input: Wacom ISDv4 93 as /devices/pci0000:00/0000:00:14.5/usb7/7-2/7-2:1.1/input/input8
wacom: v1.49:USB Wacom Graphire and Wacom Intuos tablet driver
I'm to tired to pursue this right now, but I'll be back at it later.
Problem though, I should have two lines here. Not the one I have. Earlier I got this.
Code:
dmesg | grep wacom
wacom: probe of 7-2:1.0 failed with error -113
usbcore: registered new interface driver wacom
wacom: v1.49:USB Wacom Graphire and Wacom Intuos tablet driver
|

23rd August 2009, 10:10 PM
|
|
Registered User
|
|
Join Date: Jun 2008
Posts: 30

|
|
|
Hey, if you still didn't solve your problem, try compiling your own wacom driver according to the guide. I have the exact same tablet pc as you have and it's working flawlessly on F10 that way...
|

28th August 2009, 09:38 AM
|
 |
Registered User
|
|
Join Date: Apr 2005
Location: Littleton, CO
Age: 28
Posts: 2,855

|
|
|
Thanks for the tip, I'll give it a try and see what happens.
|

29th August 2009, 01:48 PM
|
 |
Registered User
|
|
Join Date: Apr 2005
Location: Littleton, CO
Age: 28
Posts: 2,855

|
|
|
Hmm, well compiling the 0.8.4 source resulted in some functionality.
I've got the input being recognized, but I'm getting the whole screen input being used on only the upper left corner of the screen. I can't seem to get wacomcpl to recognize the input though so I can't use that to calibrate the input either.
mck182, do you have a ~/.xinitrc (or ~/.xsession) file you could post here? Failing that, how about your /etc/X11/xinit/xinitrc? If I can get a hold of the text for calibrations settings that should be at least close I should be able to figure out what I need to change for my screen.
|

29th August 2009, 02:10 PM
|
 |
Registered User
|
|
Join Date: Apr 2005
Location: Littleton, CO
Age: 28
Posts: 2,855

|
|
Well, I have some idea why wacomcpl can't see my tablet. xsetwacom can't either.
Code:
[leadgolem@leadgolem ~]$ xsetwacom list
[leadgolem@leadgolem ~]$
Now why xsetwacom can't see it. No idea.
|

29th August 2009, 11:59 PM
|
 |
Registered User
|
|
Join Date: Apr 2005
Location: Littleton, CO
Age: 28
Posts: 2,855

|
|
Ok, I got my tablet to be recognized by wacomcpl. I needed to add the hal policy info. The following file was added as /usr/share/hal/fdi/policy/20thirdparty/10-wacom.fdi
Code:
<?xml version="1.0" encoding="UTF-8"?> <!-- -*- SGML -*- -->
<deviceinfo version="0.2">
<device>
<match key="input.originating_device" contains="if0">
<match key="info.product" contains="Wacom">
<merge key="input.x11_driver" type="string">wacom</merge>
<merge key="input.x11_options.Type" type="string">stylus</merge>
<merge key="info.product" type="string">stylus</merge>
<append key="info.callouts.add" type="strlist">hal-setup-wacom</append>
<append key="wacom.types" type="strlist">eraser</append>
<merge key="input.x11_options.BottomY" type="string">16466</merge>
<merge key="input.x11_options.BottomX" type="string">26271</merge>
<merge key="input.x11_options.TopY" type="string">183</merge>
<merge key="input.x11_options.TopX" type="string">397</merge>
</match>
</match>
</device>
<device>
<match key="input.originating_device" contains="if1">
<match key="info.product" contains="Wacom">
<merge key="input.x11_driver" type="string">wacom</merge>
<merge key="input.x11_options.Type" type="string">touch</merge>
<merge key="info.product" type="string">touch</merge>
<merge key="input.x11_options.BottomY" type="string">3909</merge>
<merge key="input.x11_options.BottomX" type="string">3947</merge>
<merge key="input.x11_options.TopY" type="string">185</merge>
<merge key="input.x11_options.TopX" type="string">186</merge>
</match>
</match>
</device>
<device>
<match key="input.x11_options.Type" contains="eraser">
<merge key="info.product" type="string">eraser</merge>
</match>
</device>
</deviceinfo>
I haven't done any mucking about with an xorg.conf file at all. I did notice that the only input that showed up was touch rather then the stylus and eraser. I still have some work to do, but the touch input on the tablet is now working.
|

31st August 2009, 09:18 AM
|
 |
Registered User
|
|
Join Date: Apr 2005
Location: Littleton, CO
Age: 28
Posts: 2,855

|
|
Ok, as far as the stylus goes it looks like I'm back to the same old roadblock.
Code:
wacom: probe of 7-2:1.0 failed with error -113
Now if I understand correctly dmesg is just giving me what some other part of the system says. That would mean that error -113 isn't a dmesg error but an error being thrown out by something else.
Does anyone know what system is throwing the error? and/or what error 113 is? If I knew that then I would have some direction to take my investigations in.
EDIT: It also appears that my system is ignoring anything I put in my xorg.conf file for the touchscreen. Honestly don't really care about that as long as I can get things working.
Last edited by leadgolem; 31st August 2009 at 09:20 AM.
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
Current GMT-time: 20:50 (Friday, 24-05-2013)
|
|
 |
 |
 |
 |
|
|