1BAYCOM(9) Kernel Reference Guide BAYCOM(9)
2
3
4
6 baycom - amateur (AX.25) packet radio network driver for baycom modems
7
9 #include <linux/baycom.h>
10 #include <linux/hdlcdrv.h>
11
12
14 The driver currently supports three different modems: ser12, par96 and
15 par97.
16
17 ser12
18 This is a very simple 1200 baud AFSK modem. The modem consists only of
19 a modulator/demodulator chip, usually a TI TCM3105. The computer is
20 responsible for regenerating the receiver bit clock. The modem connects
21 to a serial port, hence the name. Since the serial port is not used as
22 an async serial port, the kernel driver for serial ports cannot be
23 used, and this driver only supports standard serial hardware (8250,
24 16450, 16550).
25
26 par96
27 This is a modem for 9600 baud FSK compatible to the G3RUH standard.
28 The modem does all the filtering and regenerates the receiver clock.
29 Data is transferred from and to the PC via a shift register. The shift
30 register is filled with 16 bits and an interrupt is signalled. The PC
31 then empties the shift register in a burst. This modem connects to the
32 parallel port, hence the name.
33
34 par97
35 This is a redesign of the par96 modem by Henning Rech, DF9IC. The modem
36 is protocol compatible to par96, but uses only three low power ICs and
37 can therefore be fed from the parallel port and does not require an
38 additional power supply.
39
40
42 The ioctl calls follow the implementation in the hdlcdrv.
43
44
45 BAYCOMCTL_GETMODEMTYPE
46 returns the modem type (i.e. ser12 or par96) and the options in
47 effect (currently only the source of the DCD signal)
48
49 BAYCOMCTL_SETMODEMTYPE
50 sets the modem type and the options. Only superuser can do this.
51
52 BAYCOMCTL_GETDEBUG
53 return some debugging values. Not always available.
54
55
56
58 baycom (9), soundmodem (9), linux/drivers/net/hdlcdrv.c,
59
60
62 baycom was written by Thomas Sailer, HB9JNX/AE4WA,
63 (t.sailer@alumni.ethz.ch).
64
65
66
67Linux 2.1.x 2 October 1996 BAYCOM(9)