\r
/* Macros: */\r
/** MIDI command for a note on (activation) event */\r
- #define MIDI_COMMAND_NOTE_ON 0x90\r
+ #define MIDI_COMMAND_NOTE_ON 0x09\r
\r
/** MIDI command for a note off (deactivation) event */\r
- #define MIDI_COMMAND_NOTE_OFF 0x80\r
+ #define MIDI_COMMAND_NOTE_OFF 0x08\r
\r
/** Standard key press velocity value used for all note events, as no pressure sensor is mounted */\r
#define MIDI_STANDARD_VELOCITY 64\r
\r
/** LED mask for the library LED driver, to indicate that an error has occurred in the USB interface. */\r
#define LEDMASK_USB_ERROR (LEDS_LED1 | LEDS_LED3)\r
+\r
+ /* Type Defines: */\r
+ /** Type define for a USB MIDI event packet, used to encapsulate sent and received MIDI messages from a USB MIDI interface. */\r
+ typedef struct\r
+ {\r
+ unsigned char Command : 4; /**< MIDI command being sent or received in the event packet */\r
+ unsigned char CableNumber : 4; /**< Virtual cable number of the event being sent or received in the given MIDI interface */\r
+ \r
+ uint8_t Data1; /**< First byte of data in the MIDI event */\r
+ uint8_t Data2; /**< Second byte of data in the MIDI event */\r
+ uint8_t Data3; /**< Third byte of data in the MIDI event */ \r
+ } USB_MIDI_EventPacket_t;\r
\r
/* Function Prototypes: */\r
void SetupHardware(void);\r
void EVENT_USB_Connect(void);\r
void EVENT_USB_Disconnect(void);\r
void EVENT_USB_ConfigurationChanged(void);\r
-\r
- void SendMIDINoteChange(const uint8_t Pitch, const bool OnOff,\r
- const uint8_t CableID, const uint8_t Channel); \r
- void UpdateStatus(uint8_t CurrentStatus);\r
\r
#endif\r