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
# with spaces.
INPUT = ../ \
../src \
INPUT = ../src \
./midi_DoxygenMainPage.h
# 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
{
// 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
{

View File

@ -220,9 +220,7 @@ void MidiInterface<SerialPort>::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<class SerialPort>
void MidiInterface<SerialPort>::sendControlChange(DataByte inControlNumber,