From 5fe1ca06979a414c5ca1a3eda1f4176bc3937192 Mon Sep 17 00:00:00 2001 From: Francois Best Date: Tue, 2 Oct 2012 22:36:07 +0200 Subject: [PATCH] Updated doc. --- doc/Doxyfile | 3 +-- src/midi_Defs.h | 9 ++++++--- src/midi_Inline.hpp | 4 +--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/Doxyfile b/doc/Doxyfile index d615abe..0edf38d 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -665,8 +665,7 @@ WARN_LOGFILE = # directories like "/usr/src/myproject". Separate the files or directories # with spaces. -INPUT = ../ \ - ../src \ +INPUT = ../src \ ./midi_DoxygenMainPage.h # This tag can be used to specify the character encoding of the source files diff --git a/src/midi_Defs.h b/src/midi_Defs.h index 216ebde..3905492 100644 --- a/src/midi_Defs.h +++ b/src/midi_Defs.h @@ -85,6 +85,10 @@ enum MidiFilterMode // ----------------------------------------------------------------------------- +/*! \brief Enumeration of Control Change command numbers. + See the detailed controllers numbers & description here: + http://www.somascape.org/midi/tech/spec.html#ctrlnums + */ enum MidiControlChangeNumber { // High resolution Continuous Controllers MSB (+32 for LSB) ---------------- @@ -154,9 +158,8 @@ enum MidiControlChangeNumber // ----------------------------------------------------------------------------- -/*! The midimsg structure contains decoded data - of a MIDI message read from the serial port - with read() or thru(). +/*! The midimsg structure contains decoded data of a MIDI message + read from the serial port with read() */ struct Message { diff --git a/src/midi_Inline.hpp b/src/midi_Inline.hpp index 7f0c1d0..82f19aa 100644 --- a/src/midi_Inline.hpp +++ b/src/midi_Inline.hpp @@ -220,9 +220,7 @@ void MidiInterface::sendProgramChange(DataByte inProgramNumber, \param inControlNumber The controller number (0 to 127). \param inControlValue The value for the specified controller (0 to 127). \param inChannel The channel on which the message will be sent (1 to 16). - - See the detailed controllers numbers & description here: - http://www.somascape.org/midi/tech/spec.html#ctrlnums + @see MidiControlChangeNumber */ template void MidiInterface::sendControlChange(DataByte inControlNumber,