mirror of
https://github.com/felis/USB_Host_Shield_2.0.git
synced 2024-03-22 11:31:26 +01:00
Fix indentation, whitespace and convert tabs to spaces in MIDI driver
This commit is contained in:
parent
0039719970
commit
8ac2035681
2 changed files with 15 additions and 15 deletions
|
@ -310,7 +310,7 @@ void USBH_MIDI::parseConfigDescr( byte addr, byte conf )
|
|||
uint8_t USBH_MIDI::Release()
|
||||
{
|
||||
pUsb->GetAddressPool().FreeAddress(bAddress);
|
||||
bNumEP = 1; //must have to be reset to 1
|
||||
bNumEP = 1; //must have to be reset to 1
|
||||
bAddress = 0;
|
||||
bPollEnable = false;
|
||||
readPtr = 0;
|
||||
|
|
|
@ -40,10 +40,10 @@ private:
|
|||
uint8_t lookupMsgSize(uint8_t midiMsg);
|
||||
|
||||
protected:
|
||||
static const uint8_t epDataInIndex; // DataIn endpoint index(MIDI)
|
||||
static const uint8_t epDataOutIndex; // DataOUT endpoint index(MIDI)
|
||||
static const uint8_t epDataInIndexVSP; // DataIn endpoint index(Vendor Specific Protocl)
|
||||
static const uint8_t epDataOutIndexVSP; // DataOUT endpoint index(Vendor Specific Protocl)
|
||||
static const uint8_t epDataInIndex; // DataIn endpoint index(MIDI)
|
||||
static const uint8_t epDataOutIndex; // DataOUT endpoint index(MIDI)
|
||||
static const uint8_t epDataInIndexVSP; // DataIn endpoint index(Vendor Specific Protocl)
|
||||
static const uint8_t epDataOutIndexVSP; // DataOUT endpoint index(Vendor Specific Protocl)
|
||||
|
||||
boolean isMidiFound;
|
||||
|
||||
|
|
Loading…
Reference in a new issue