From 4d8ff759936a24ca7b8db8d51c335f3bec5c90f4 Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Sun, 31 Aug 2014 21:27:35 +1000 Subject: Add Dual MIDI device class driver demo application. --- LUFA/DoxygenPages/ChangeLog.txt | 2 ++ LUFA/DoxygenPages/VIDAndPIDValues.txt | 4 ++-- LUFA/Drivers/USB/Class/Common/MIDIClassCommon.h | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) (limited to 'LUFA') 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 * * Changed: * - 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 @@ * * 0x03EB * 0x206C - * Bulk Vendor Demo + * Bulk Vendor Demo Application * * * 0x03EB * 0x206D - * Currently Unallocated + * Dual MIDI Demo Application * * * 0x03EB 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. */ -- cgit v1.2.3