#include <midi_UsbDefs.h>
Definition at line 97 of file midi_UsbDefs.h.
| UsbMidiEventPacket::UsbMidiEventPacket |
( |
| ) |
|
|
inline |
| byte UsbMidiEventPacket::getCableNumber |
( |
| ) |
const |
|
inline |
| byte UsbMidiEventPacket::getCodeIndexNumber |
( |
| ) |
const |
|
inline |
| const byte* UsbMidiEventPacket::getMidiData |
( |
| ) |
const |
|
inline |
| byte* UsbMidiEventPacket::getMidiData |
( |
| ) |
|
|
inline |
| void UsbMidiEventPacket::setHeader |
( |
byte |
inCableNumber, |
|
|
byte |
inCodeIndexNumber |
|
) |
| |
|
inline |
Definition at line 106 of file midi_UsbDefs.h.
108 const byte msb = (0x0f & inCableNumber) << 4;
109 const byte lsb = (0x0f & inCodeIndexNumber);
110 mData[0] = msb | lsb;
| void UsbMidiEventPacket::setMidiData |
( |
const byte * |
inData | ) |
|
|
inline |
| byte UsbMidiEventPacket::mData[4] |
The documentation for this struct was generated from the following file: