aboutsummaryrefslogtreecommitdiff
path: root/doc/pddp/midi-basics.pd
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-04-26 05:34:40 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-04-26 05:34:40 +0000
commitb8ed40f8c8bb856e4e2b1a5e314bd42ec7f1f9f6 (patch)
tree7dff78e8c09ad980953b6de7730066b0d001beb3 /doc/pddp/midi-basics.pd
parent8ce2b8755d6c017e6ce5213e35e3e792d4ad8763 (diff)
made an object, [pddp_open] which opens a giving patch on the fly. This way, it is no longer necessary to instantiate an object in a help patch in order for it to be linked. For example, the [hid] help patch doesn't need an instance of [all_about_hid]. [all_about_hid] is opened upon request via [pddp_open]. This eliminates bugs and makes the help system load fast, since its loading much less.
svn path=/trunk/; revision=2824
Diffstat (limited to 'doc/pddp/midi-basics.pd')
-rw-r--r--doc/pddp/midi-basics.pd45
1 files changed, 0 insertions, 45 deletions
diff --git a/doc/pddp/midi-basics.pd b/doc/pddp/midi-basics.pd
deleted file mode 100644
index 0950d9a7..00000000
--- a/doc/pddp/midi-basics.pd
+++ /dev/null
@@ -1,45 +0,0 @@
-#N canvas 224 22 443 646 10;
-#X text 59 6 MIDI basics.;
-#X text 11 54 MIDI in PD is handled through the 'raw' midi devices
-(such as /dev/midi*). One could specify which MIDI port PD is supposed
-to use through a command line switch when starting PD \, i.e.:;
-#X text 35 126 pd -midiindev 1 -midioutdev 2;
-#X text 43 287 pd -mididev 1;
-#X text 17 315 This will use the first port for both MIDI input and
-output.;
-#X text 17 397 There is also a little bit of confusion about OSS midi
-(which uses the raw midi - /dev/midi* - devices by default) and ALSA
-(which is becoming very popular). ALSA uses /dev/snd/midiC*D* as their
-raw midi devices. The C* (* = some number) is the device number while
-D* (* = some number) is the port number. Normally the ALSA driver links
-its raw devices to the corresponding /dev/midi* automatically (i.e.:
-/dev/snd/midiC0d0 -> /dev/midi00 \, /dev/snd/midiC0D1 -> /dev/midi01
-etc).;
-#X text 13 150 so \, the above will use the first MIDI device for MIDI
-input (it could be a MIDI controller such as a keyboard \, midi-guitar
-\, midi knob box etc) and the device #2 will be used for outputting
-the MIDI (re)generated or sent by PD.;
-#X text 13 232 For using the same device for MIDI input AND output
-(i.e. when one uses a MIDI keyboard which is also a synthesizer) the
-following command line switch will do:;
-#X text 19 521 MIDI objects in PD (the ones that read and write to
-MIDI ports) take a MIDI channel as an argument. Channels 1-16 use the
-first MIDI device \, 17-32 use the second MIDI device and so on. For
-this to work one must specify which devices PD is supposed to use:
-;
-#X text 39 599 -midiindev 1 \, 2 -- use devices 1 and 2 for input;
-#X text 39 615 -midioutdev 1 \, 2 -- use devices 1 and 2 for output
-;
-#X text 39 631 -mididev 1 \, 2 -- use devices 1 and 2 for input and
-output;
-#X text 17 343 NOTE (Linux): PD counts the MIDI devices starting from
-1 Usually \, the operating system counts them starting with 0 (zero)
-so if you want to use /dev/midi00 \, PD has to be started with -mididev
-1 Always add 1 to the device number.;
-#X text 21 651 NOTE (Windows): -listdev command line option lists all
-available MIDI and audio devices.;
-#X text 19 678 A couple more useful command line options (related to
-MIDI):;
-#X text 21 694 -nomidiin -- do not listen to any midi input;
-#X text 21 706 -nomidiout -- do not send any midi output;
-#X text 21 718 -nomidi -- do not use any MIDI;