Fix redefinition warning when USB_DEVICE_ONLY is set on an AVR which does not support USB host mode.

This commit is contained in:
Dean Camera 2009-07-30 07:45:36 +00:00
parent fef185a409
commit 5ca1d7bf8f
3 changed files with 5 additions and 2 deletions

View file

@ -137,7 +137,7 @@
/** Type define for a USB MIDI event packet, used to encapsulate sent and received MIDI messages from a USB MIDI interface. */
typedef struct
{
unsigned char Command : 4; /**< MIDI command being sent or received in the event packet */
unsigned char Command : 4; /**< Upper nibble of the MIDI command being sent or received in the event packet */
unsigned char CableNumber : 4; /**< Virtual cable number of the event being sent or received in the given MIDI interface */
uint8_t Data1; /**< First byte of data in the MIDI event */