Updated doc.

This commit is contained in:
Francois Best 2012-10-02 22:36:07 +02:00
parent 691b172187
commit 5fe1ca0697
3 changed files with 8 additions and 8 deletions

View File

@ -665,8 +665,7 @@ WARN_LOGFILE =
# directories like "/usr/src/myproject". Separate the files or directories # directories like "/usr/src/myproject". Separate the files or directories
# with spaces. # with spaces.
INPUT = ../ \ INPUT = ../src \
../src \
./midi_DoxygenMainPage.h ./midi_DoxygenMainPage.h
# This tag can be used to specify the character encoding of the source files # This tag can be used to specify the character encoding of the source files

View File

@ -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 enum MidiControlChangeNumber
{ {
// High resolution Continuous Controllers MSB (+32 for LSB) ---------------- // High resolution Continuous Controllers MSB (+32 for LSB) ----------------
@ -154,9 +158,8 @@ enum MidiControlChangeNumber
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
/*! The midimsg structure contains decoded data /*! The midimsg structure contains decoded data of a MIDI message
of a MIDI message read from the serial port read from the serial port with read()
with read() or thru().
*/ */
struct Message struct Message
{ {

View File

@ -220,9 +220,7 @@ void MidiInterface<SerialPort>::sendProgramChange(DataByte inProgramNumber,
\param inControlNumber The controller number (0 to 127). \param inControlNumber The controller number (0 to 127).
\param inControlValue The value for the specified controller (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). \param inChannel The channel on which the message will be sent (1 to 16).
@see MidiControlChangeNumber
See the detailed controllers numbers & description here:
http://www.somascape.org/midi/tech/spec.html#ctrlnums
*/ */
template<class SerialPort> template<class SerialPort>
void MidiInterface<SerialPort>::sendControlChange(DataByte inControlNumber, void MidiInterface<SerialPort>::sendControlChange(DataByte inControlNumber,