From owner-freebsd-usb@FreeBSD.ORG Sun Feb 10 17:39:53 2008 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C574216A420 for ; Sun, 10 Feb 2008 17:39:53 +0000 (UTC) (envelope-from kaiwang27@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.184]) by mx1.freebsd.org (Postfix) with ESMTP id 63A2313C4CE for ; Sun, 10 Feb 2008 17:39:52 +0000 (UTC) (envelope-from kaiwang27@gmail.com) Received: by nf-out-0910.google.com with SMTP id b2so1310470nfb.33 for ; Sun, 10 Feb 2008 09:39:51 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:received:received:x-authentication-warning:date:from:to:cc:subject:message-id:mail-followup-to:references:mime-version:content-type:content-disposition:in-reply-to:user-agent; bh=aj6zMyGPH34j3pDT9NBq0wzKFHpw6jDecsRlNibdfU0=; b=o6DjXf7mMZkD26JjOJ5pqdYq4GTDZCQlEbAAKzJ/qSHOcbCsA574rv/vS7NCche1pPw9NF55baGRdkYdEvkq47e4SHjcQ4Z2QqcdzN+Mz9bqfnBBC/+ZltOBGo+e5MUDITPvJSHzfOaW/b3+cby13v8cg2KbUtO9hE1LcO0uv50= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=x-authentication-warning:date:from:to:cc:subject:message-id:mail-followup-to:references:mime-version:content-type:content-disposition:in-reply-to:user-agent; b=LLTa/HxppvnZ53eIfwWfWsi6z7wM4RYGhNQ+IcYS9nf9+/A6dy6MBKZyfzG+HheDKEfJvTaz0iEZTtKzdu0q7tt70saP+MuCwKm2YazO7Timvv59I3nbmSsEaeCOqUQa9F7x/mYtzd4EZyy9epXx/Xbe4ETJHLvUUwEJBXznm3k= Received: by 10.78.161.4 with SMTP id j4mr27122689hue.49.1202663458347; Sun, 10 Feb 2008 09:10:58 -0800 (PST) Received: from plan0.kaiwan.csbnet.se ( [193.11.244.12]) by mx.google.com with ESMTPS id z34sm17144001ikz.8.2008.02.10.09.10.54 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 10 Feb 2008 09:10:56 -0800 (PST) Received: from localhost ([127.0.0.1] helo=plan0.kaiwan.csbnet.se) by plan0.kaiwan.csbnet.se with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1JOFhd-0009iq-4l; Sun, 10 Feb 2008 18:10:53 +0100 Received: (from kaffir@localhost) by plan0.kaiwan.csbnet.se (8.14.2/8.14.2/Submit) id m1AHAqAj037375; Sun, 10 Feb 2008 18:10:52 +0100 (CET) (envelope-from kaiwang27@gmail.com) X-Authentication-Warning: plan0.kaiwan.csbnet.se: kaffir set sender to kaiwang27@gmail.com using -f Date: Sun, 10 Feb 2008 18:10:52 +0100 From: Kai Wang To: Chuck Robey Message-ID: <20080210171052.GA37262@plan0.kaiwan.csbnet.se> Mail-Followup-To: Chuck Robey , freebsd-usb@freebsd.org References: <47AE28EB.7070205@chuckr.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <47AE28EB.7070205@chuckr.org> User-Agent: Mutt/1.5.17 (2007-11-01) Cc: freebsd-usb@freebsd.org Subject: Re: getting my new graphic tablet cooperating with gimp X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Feb 2008 17:39:53 -0000 On Sat, Feb 09, 2008 at 05:27:55PM -0500, Chuck Robey wrote: > I have a nice new UC-Logic WP8060-TAB08, sometimes called the Superpen, and > I want to get it working so's I can make fine art with it (yeah, I'm a > dreamer, so what else is new, hey?) The return off of dmesg is: > > ums0: on uhub0 > ums0: X report 0x0002 not supported > device_attach: ums0 attach returned 6 This is because your tablet use absolute coordinates (most tablets do) while ums(4) currently only support relative ones. Could you please try to dump your pen's report descriptor and paste it here, thus we can have more infomation? You can do it by: Download the tool: http://people.freebsd.org/~kaiw/tools/krepdump.tgz # tar xzvf krepdump.tgz # cd krepdump # make # kldload ./krepdump.ko Then connect your superpen to the usb port, (if it is already connected you will have to disconnect it first) the report descriptor will be printed on the console. (or you can type 'dmesg' to see it) -- Kai