diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-12-09 21:27:20 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-12-09 21:27:20 +0000 |
commit | 7490d864e974184d55e7ad15e31ab481201413d7 (patch) | |
tree | 57e89ed90d124ed29e063b02f402095b34481754 /share/man | |
parent | f6dbc1b38f6ec140a2bba54729ea5f6ad24b22f6 (diff) |
add uhts(4) a driver for USB HID touchscreens. ok miod@.
Man page advices by jmc@.
Diffstat (limited to 'share/man')
-rw-r--r-- | share/man/man4/Makefile | 5 | ||||
-rw-r--r-- | share/man/man4/uhts.4 | 72 |
2 files changed, 75 insertions, 2 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile index 29616b14c5a..b4038429d3c 100644 --- a/share/man/man4/Makefile +++ b/share/man/man4/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.498 2009/11/25 16:18:04 dms Exp $ +# $OpenBSD: Makefile,v 1.499 2009/12/09 21:27:19 matthieu Exp $ MAN= aac.4 ac97.4 acphy.4 \ acpi.4 acpiac.4 acpiasus.4 acpibat.4 acpibtn.4 acpicpu.4 acpidock.4 \ @@ -54,7 +54,8 @@ MAN= aac.4 ac97.4 acphy.4 \ tlphy.4 thmc.4 tqphy.4 trm.4 trunk.4 tsl.4 tty.4 tun.4 twe.4 txp.4 \ txphy.4 uaudio.4 uark.4 uath.4 uberry.4 ubsa.4 ubsec.4 ubt.4 \ ucom.4 uchcom.4 ucycom.4 udav.4 udcf.4 udfu.4 udl.4 udp.4 udsbr.4 \ - ueagle.4 uftdi.4 ugen.4 uhci.4 uhid.4 uhidev.4 uipaq.4 uk.4 ukbd.4 \ + ueagle.4 uftdi.4 ugen.4 uhci.4 uhid.4 uhidev.4 uhts.4 \ + uipaq.4 uk.4 ukbd.4 \ ukphy.4 ulpt.4 umass.4 umbg.4 umct.4 umidi.4 umodem.4 ums.4 umsm.4 \ unix.4 uow.4 upgt.4 upl.4 uplcom.4 ural.4 urio.4 url.4 urlphy.4 \ urtw.4 usb.4 usbf.4 uscanner.4 uslcom.4 usscanner.4 uthum.4 \ diff --git a/share/man/man4/uhts.4 b/share/man/man4/uhts.4 new file mode 100644 index 00000000000..9a58d60aa19 --- /dev/null +++ b/share/man/man4/uhts.4 @@ -0,0 +1,72 @@ +.\" $OpenBSD: uhts.4,v 1.1 2009/12/09 21:27:19 matthieu Exp $ +.\" +.\" Copyright (c) 2009 Matthieu Herrb <matthieu@herrb.eu> +.\" Copyright (c) 2005 Robert Nagy <robert@openbsd.org> +.\" +.\" Permission to use, copy, modify, and distribute this software for any +.\" purpose with or without fee is hereby granted, provided that the above +.\" copyright notice and this permission notice appear in all copies. +.\" +.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +.\" +.Dd $Mdocdate: December 9 2009 $ +.Dt UHTS 4 +.Os +.Sh NAME +.Nm uhts +.Nd USB HID touchscreen support +.Sh SYNOPSIS +.Cd "uhts* at uhidev?" +.Cd "wsmouse* at uts? mux 0" +.Sh DESCRIPTION +The +.Nm +driver provides support for USB Human Interface Device touchscreens. +Access to the touchscreen is provided through the +.Xr wscons 4 +framework. +.Pp +Touching the screen will emulate mouse button 0 being pressed. +.Pp +The touchscreen sensor is poorly aligned, therefore +.Xr xtsscale 1 +should be used to provide calibration results to the +.Nm +driver. +.Pp +The +.Nm +driver works with the following touchscreens and panels: +.Pp +.Bl -dash -offset indent -compact +.It +Iyama ProLite T1530SR-B2 +.It +Iyama ProLite T1730SR-B2 +.El +.Sh SEE ALSO +.Xr xtsscale 1 , +.Xr uhub 4 , +.Xr usb 4 , +.Xr uts 4 , +.Xr wscons 4 , +.Xr wsmouse 4 +.Sh HISTORY +The +.Nm +driver first appeared in +.Ox 4.7 . +.Sh AUTHORS +.An -nosplit +The +.Nm +driver was written by +.An Robert Nagy +and +.An Matthieu Herrb . |