NetBSD/share/man/man4/midi.4

126 lines
4.4 KiB
Groff
Raw Normal View History

.\" $NetBSD: midi.4,v 1.19 2001/09/22 01:34:47 wiz Exp $
.\"
.\" Copyright (c) 1999 The NetBSD Foundation, Inc.
1998-08-07 00:45:44 +04:00
.\" All rights reserved.
.\"
.\" This code is derived from software contributed to The NetBSD Foundation
.\" by Lennart Augustsson.
.\"
1998-08-07 00:45:44 +04:00
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\" 3. All advertising materials mentioning features or use of this software
.\" must display the following acknowledgement:
.\" This product includes software developed by the NetBSD
.\" Foundation, Inc. and its contributors.
.\" 4. Neither the name of The NetBSD Foundation nor the names of its
.\" contributors may be used to endorse or promote products derived
.\" from this software without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
.\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
1998-08-07 00:45:44 +04:00
.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
.Dd August 6, 1998
.Dt MIDI 4
.Os
1998-08-07 00:45:44 +04:00
.Sh NAME
.Nm midi
.Nd device-independent MIDI driver layer
.Sh SYNOPSIS
2000-05-02 15:05:27 +04:00
.Cd "midi* at cms?"
2000-08-01 12:19:39 +04:00
.Cd "midi* at clcs?"
.Cd "midi* at clct?"
1999-10-30 03:06:25 +04:00
.Cd "midi* at eap?"
1999-09-16 23:47:49 +04:00
.Cd "midi* at mpu?"
1998-08-13 01:28:54 +04:00
.Cd "midi* at opl?"
.Cd "midi* at pcppi?"
.Cd "midi* at sb?"
2001-01-31 07:32:18 +03:00
.Cd "midi* at umidi?"
1999-11-15 21:50:32 +03:00
.\" .Cd "midi* at wss?"
1998-08-13 01:28:54 +04:00
.Cd "pseudo-device sequencer"
.Pp
1998-08-07 00:45:44 +04:00
.Fd #include <sys/types.h>
.Fd #include <sys/midiio.h>
.Sh DESCRIPTION
The
.Nm
driver provides support for various MIDI peripherals.
It provides a uniform programming interface layer above different
1998-08-13 01:28:54 +04:00
underlying MIDI hardware drivers. The MIDI hardware can be of many
different kinds, e.g., an external synthesizer on a MIDI port (or a serial port),
the PC speaker, an internal FM synth, or a wavetable synth.
1998-08-07 00:45:44 +04:00
.Pp
1998-08-13 01:28:54 +04:00
There are two device file types available for MIDI operation:
1998-08-07 00:45:44 +04:00
.Pa /dev/rmidiN ,
and
1998-08-13 01:28:54 +04:00
.Pa /dev/music .
The
.Pa /dev/rmidiN
devices provides raw access to a MIDI device. Data written is sent
to the physical device as fast as possible and is uninterpreted.
Reading from the device returns data as soon as it becomes available.
A moderate amount of buffering is available both for reading and writing.
1998-08-22 18:45:35 +04:00
The raw MIDI devices are mostly useful for non realtime operations, such as
downloading patches to a device, since it is hard to get the accurate timing
needed for quality music from a user program. But the devices can act as
a simple patchboard for MIDI devices. For example, a MIDI keyboard could
be connected to a synthesizer by the command
.Cd "cat -u /dev/rmidi1 >/dev/rmidi2"
1998-08-13 01:28:54 +04:00
.Pp
2001-09-12 02:52:52 +04:00
The
1998-08-13 01:28:54 +04:00
.Pa /dev/music
device is a MIDI sequencer device. Data sent to and from this device
not only contains the information sent to the MIDI device, but also
timing information. The kernel will make sure that data is sent
to the physical device at the indicated time. The sequencer device
2001-09-12 02:52:52 +04:00
uses the
1999-09-16 23:49:04 +04:00
.Pa /dev/rmidiN
1998-08-13 01:28:54 +04:00
devices internally and they are unavailable when used by the sequencer.
.Pp
The API for the sequencer device is binary compatible with the OSS sequencer
interface.
1998-08-07 00:45:44 +04:00
.Sh FILES
.Bl -tag -width /dev/sequencer -compact
.It Pa /dev/rmidiN
.It Pa /dev/music
.It Pa /dev/sequencer
.El
.Sh SEE ALSO
1998-08-13 01:28:54 +04:00
.Xr midiplay 1 ,
.Xr ioctl 2 ,
.Xr ossaudio 3 ,
.Xr audio 4 ,
1999-09-16 23:47:49 +04:00
.Xr mpu 4 ,
1998-08-18 12:16:56 +04:00
.Xr opl 4 ,
.Xr umidi 4
1998-08-07 00:45:44 +04:00
.br
For ports using the ISA bus:
2000-05-02 02:46:43 +04:00
.Xr cms 4 ,
1998-08-13 01:28:54 +04:00
.Xr pcppi 4 ,
1999-11-15 21:55:27 +03:00
.Xr sb 4
2000-08-01 12:19:39 +04:00
.br
For ports using the PCI bus:
.Xr clcs 4 ,
.Xr eap 4
1998-08-13 01:28:54 +04:00
.Sh HISTORY
The
.Nm
driver first appeared in
.Nx 1.4 .
1998-08-07 00:45:44 +04:00
.Sh BUGS
This man page is very incomplete.