BSD 4_4 development
[unix-history] / usr / share / man / cat4 / vax / tb.0
TB(4) BSD Programmer's Manual (VAX Architecture) TB(4)
N\bNA\bAM\bME\bE
t\btb\bb - line discipline for digitizing devices
S\bSY\bYN\bNO\bOP\bPS\bSI\bIS\bS
p\bps\bse\beu\bud\bdo\bo-\b-d\bde\bev\bvi\bic\bce\be t\btb\bb
D\bDE\bES\bSC\bCR\bRI\bIP\bPT\bTI\bIO\bON\bN
This line discipline provides a polled interface to many common digitiz-
ing devices which are connected to a host through a serial line. When
these devices stream data at high speed, the use of the line discipline
is critical in minimizing the number of samples that would otherwise be
lost due to buffer exhaustion in the tty(4) handler.
The line discipline is enabled by a sequence:
#include <sys/tablet.h>
int ldisc = TBLDISC, fildes; ...
ioctl(fildes, TIOCSETD, &ldisc);
A typical application program then polls the digitizing device by reading
a binary data structure which contains: the current X and Y positions (in
the device coordinate space), up-down status of the buttons or pen sty-
lus, proximity information (when available), and a count of the number of
samples received from the input device since it was opened. In addition,
devices such as the GTCO append tilt and pressure information to the end
of the aforementioned structure. For the Polhemus 3-D digitizer the
structure read is completely different. Refer to the include file for a
complete description.
While in tablet mode, normal teletype input and output functions take
place. Thus, if an 8 bit output data path is desired, it is necessary to
prepare the output line by putting it into RAW mode using ioctl(2). This
must be done _\bb_\be_\bf_\bo_\br_\be changing the discipline with TIOCSETD, as most
ioctl(2) calls are disabled while in tablet line-discipline mode.
The line discipline supports ioctl(2) requests to get/set the operating
mode, and to get/set the tablet type and operating mode by _\bo_\br-ing the two
values together.
The line discipline supports digitizing devices which are compatible with
Hitachi, GTCO, or Polhemus protocol formats. For Hitachi there are sev-
eral formats with that used in the newer model HDG-1111B the most common.
D\bDI\bIA\bAG\bGN\bNO\bOS\bST\bTI\bIC\bCS\bS
None.
S\bSE\bEE\bE A\bAL\bLS\bSO\bO
tty(4)
H\bHI\bIS\bST\bTO\bOR\bRY\bY
The t\btb\bb interface appeared in 4.3BSD.
4.3 Berkeley Distribution June 5, 1993 1