Merge from vendor branch SENDMAIL:
[dragonfly.git] / share / man / man4 / man4.i386 / labpc.4
1 .\"
2 .\" Copyright (c) 1995 HD Associates, Inc.
3 .\" All rights reserved.
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\"    notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\"    notice, this list of conditions and the following disclaimer in the
12 .\"    documentation and/or other materials provided with the distribution.
13 .\" 3. All advertising materials mentioning features or use of this software
14 .\"    must display the following acknowledgement:
15 .\"      This product includes software developed by Christopher G. Demetriou.
16 .\" 3. The name of the author may not be used to endorse or promote products
17 .\"    derived from this software withough specific prior written permission
18 .\"
19 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 .\"
30 .\" $FreeBSD: src/share/man/man4/man4.i386/labpc.4,v 1.8.2.2 2001/08/17 13:08:45 ru Exp $
31 .\" $DragonFly: src/share/man/man4/man4.i386/labpc.4,v 1.2 2003/06/17 04:36:59 dillon Exp $
32 .\"
33 .Dd April 26, 1995
34 .Dt LABPC 4 i386
35 .Os
36 .Sh NAME
37 .Nm labpc
38 .Nd National Instruments LABPC and LABPC+ driver
39 .Sh SYNOPSIS
40 .Cd "device labpc0 at isa? port 260 irq 5"
41 .Sh DESCRIPTION
42 This supports the National Instruments LABPC and LABPC+ \fILow-Cost
43 Multifunction I/O Board\fP.
44 .Pp
45 This board provides 8 12 bit A-D input channels, 2 12 bit D-A output
46 channels, and 3 8 bit digital I/O ports.  It also supports setting
47 up the National Instruments SCXI bus off the digital I/O ports,
48 although that software is currently present in an external program
49 and not as part of the driver.
50 .Pp
51 The selection of the input or output device, mode, and channel is
52 through the minor number:
53 .Bd -literal -offset indent
54 The 8 bit minor number format is UUSIDCCC, with
55  UU: Board unit.
56   S: SCAN bit for scan enable.
57   I: INTERVAL for interval support
58   D: 1: Digital I/O, 0: Analog I/O
59 CCC: The channel selector:
60      ANALOG:
61      input:  channel must be 0 to 7 for AD0 ... AD7
62      output: channel must be 0 to 2
63              0: D-A 0
64              1: D-A 1
65              2: Alternate channel 0 then 1
66
67      DIGITAL:
68      input:  Channel must be 0 to 2.
69      output: Channel must be 0 to 2.
70 .Ed
71 .Pp
72 The /dev/MAKEDEV script will make the basic analog and digital
73 devices if you do "sh MAKEDEV labpcaio" and "sh MAKEDEV labpcdio",
74 however, it won't make device entries for INTERVAL and SCAN devices.
75 SCAN devices automatically scan over all channels from the channel
76 number down to 0 (for example, a SCAN for /dev/ad7 will read channels
77 AD7 ...  AD0) while the INTERVAL device will wait for an external
78 signal and then read all the channels from the selected channel
79 number down to 0 as fast as it can.  This is done by the hardware
80 and not the driver (other than turning it on); See the \fILabPC+
81 User's Manual\fP and the source code if this doesn't make sense to
82 you.
83 .Pp
84 The driver supports several general analog I/O ioctl calls.  These
85 are defined in sys/dataacq.h and are intended to be implemented in
86 other data acquisition board device drivers.
87 .Pp
88 AD_MICRO_PERIOD_SET takes a pointer to a long argument specifying
89 the number of microseconds between samples.
90 .Pp
91 AD_MICRO_PERIOD_GET takes a pointer to a long argument and returns
92 the current number of microseconds between samples.
93 .Pp
94 AD_NGAINS_GET takes a pointer to an integer and returns the number
95 of different gain settings the board supports.  This is 8 for the
96 LabPC board.
97 .Pp
98 AD_NCHANS_GET takes a pointer to an integer and returns the number
99 of channels the board supports.  This is 8 for the LabPC board.
100 .Pp
101 AD_SUPPORTED_GAINS returns an array of NGAINS (the number obtained
102 by AD_NGAINS_GET) doubles.  These are the gains the board supports.
103 .Pp
104 AD_GAINS_SET takes an array of NCHANS (the number obtained by
105 AD_NCHANS_GET) integers and sets the board gains.  These are indices
106 into the supported gain array, with one gain for each channel.
107 .Pp
108 AD_GAINS_GET takes an array of NCHANS (returned by AD_NCHANS_GET)
109 integers and returns the current board gains.
110 .Sh BUGS
111 In general, only those capabilities that I needed are present.  In
112 particular the following notable restrictions are present.
113 .Pp
114 The analog input is only supported in a clocked conversion mode.
115 .Pp
116 You can only set the sample clock down to 15 Hz.  Anything slower
117 needs a modification to the driver to support TCINTEN in order to
118 chain together the counters to get a lower clock rate.
119 .Pp
120 There is no support for clocked D-A output.
121 .Pp
122 The 8255 providing the digital I/O ports  is supported only in mode
123 0 (three 8 bit ports).
124 .Pp
125 There is support for the SCXI bus off the LABPC board.  It is not
126 in the driver but is a separate user process that accesses the
127 digital I/O devices.  Ask dufault@hda.com for it.
128 .Pp
129 MAKEDEV only makes the "basic" devices.  You must make the INTERVAL
130 or SCAN devices by hand.
131 .Pp
132 The INTERVAL device sets the clock rate as high as possible so that
133 it samples all the channels as quickly as it can after the external
134 signal.  This is a silly restriction; it should simply use the
135 clock setting.
136 .Sh CAVEATS
137 National Instrument's (like most other laboratory grade board
138 vendors) definition of Low-Cost differs dramatically from many on
139 the net.