aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2014-08-31 21:27:35 +1000
committerDean Camera <dean@fourwalledcubicle.com>2014-08-31 21:27:35 +1000
commit4d8ff759936a24ca7b8db8d51c335f3bec5c90f4 (patch)
tree26608f8800275855c2a30d84ca7f1de66baec65a /LUFA
parent0091b3c819f96812933e4b0a0e5b01a023341771 (diff)
downloadlufa-4d8ff759936a24ca7b8db8d51c335f3bec5c90f4.tar.gz
lufa-4d8ff759936a24ca7b8db8d51c335f3bec5c90f4.tar.bz2
lufa-4d8ff759936a24ca7b8db8d51c335f3bec5c90f4.zip
Add Dual MIDI device class driver demo application.
Diffstat (limited to 'LUFA')
-rw-r--r--LUFA/DoxygenPages/ChangeLog.txt2
-rw-r--r--LUFA/DoxygenPages/VIDAndPIDValues.txt4
-rw-r--r--LUFA/Drivers/USB/Class/Common/MIDIClassCommon.h2
3 files changed, 5 insertions, 3 deletions
diff --git a/LUFA/DoxygenPages/ChangeLog.txt b/LUFA/DoxygenPages/ChangeLog.txt
index db10c2ad8..9fe86cdda 100644
--- a/LUFA/DoxygenPages/ChangeLog.txt
+++ b/LUFA/DoxygenPages/ChangeLog.txt
@@ -11,6 +11,8 @@
* - Core:
* - Updated the BUILD build system module to add a new COMPILER_PATH optional variable
* - Added Serial_IsSendReady() and Serial_IsSendComplete() functions to the Serial hardware peripheral driver
+ * - Library Applications:
+ * - Added new Dual MIDI class driver device demo
*
* <b>Changed:</b>
* - Core:
diff --git a/LUFA/DoxygenPages/VIDAndPIDValues.txt b/LUFA/DoxygenPages/VIDAndPIDValues.txt
index 6d39ce7f9..8b1722044 100644
--- a/LUFA/DoxygenPages/VIDAndPIDValues.txt
+++ b/LUFA/DoxygenPages/VIDAndPIDValues.txt
@@ -171,12 +171,12 @@
* <tr>
* <td>0x03EB</td>
* <td>0x206C</td>
- * <td>Bulk Vendor Demo</td>
+ * <td>Bulk Vendor Demo Application</td>
* </tr>
* <tr>
* <td>0x03EB</td>
* <td>0x206D</td>
- * <td><i>Currently Unallocated</i></td>
+ * <td>Dual MIDI Demo Application</td>
* </tr>
* <tr>
* <td>0x03EB</td>
diff --git a/LUFA/Drivers/USB/Class/Common/MIDIClassCommon.h b/LUFA/Drivers/USB/Class/Common/MIDIClassCommon.h
index 3e601ea5e..f52013cc9 100644
--- a/LUFA/Drivers/USB/Class/Common/MIDIClassCommon.h
+++ b/LUFA/Drivers/USB/Class/Common/MIDIClassCommon.h
@@ -345,7 +345,7 @@
*/
typedef struct
{
- uint8_t Event; /**< MIDI event type, constructed with the \ref MIDI_EVENT() macro. */
+ uint8_t Event; /**< MIDI event type, constructed with the \ref MIDI_EVENT() macro. */
uint8_t Data1; /**< First byte of data in the MIDI event. */
uint8_t Data2; /**< Second byte of data in the MIDI event. */