2016-03-21 15:35:40 +01:00
|
|
|
/*
|
|
|
|
*******************************************************************************
|
|
|
|
* USB-MIDI class driver for USB Host Shield 2.0 Library
|
|
|
|
* Copyright (c) 2012-2016 Yuuichi Akagawa
|
|
|
|
*
|
|
|
|
* Idea from LPK25 USB-MIDI to Serial MIDI converter
|
|
|
|
* by Collin Cunningham - makezine.com, narbotic.com
|
|
|
|
*
|
|
|
|
* for use with USB Host Shield 2.0 from Circuitsathome.com
|
|
|
|
* https://github.com/felis/USB_Host_Shield_2.0
|
|
|
|
*******************************************************************************
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*******************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if !defined(_USBH_MIDI_H_)
|
|
|
|
#define _USBH_MIDI_H_
|
|
|
|
#include "Usb.h"
|
|
|
|
|
|
|
|
#define MIDI_MAX_ENDPOINTS 5 //endpoint 0, bulk_IN(MIDI), bulk_OUT(MIDI), bulk_IN(VSP), bulk_OUT(VSP)
|
|
|
|
#define USB_SUBCLASS_MIDISTREAMING 3
|
|
|
|
#define DESC_BUFF_SIZE 256
|
|
|
|
#define MIDI_EVENT_PACKET_SIZE 64
|
|
|
|
class USBH_MIDI;
|
|
|
|
|
|
|
|
class USBH_MIDI : public USBDeviceConfig
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
uint8_t lookupMsgSize(uint8_t midiMsg);
|
|
|
|
|
|
|
|
protected:
|
2016-04-14 23:13:35 +02:00
|
|
|
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)
|
2016-03-21 15:35:40 +01:00
|
|
|
|
|
|
|
/* mandatory members */
|
|
|
|
USB *pUsb;
|
|
|
|
uint8_t bAddress;
|
|
|
|
uint8_t bConfNum; // configuration number
|
|
|
|
uint8_t bNumEP; // total number of EP in the configuration
|
|
|
|
bool bPollEnable;
|
2016-04-18 18:01:10 +02:00
|
|
|
|
|
|
|
bool isMidiFound;
|
2016-03-21 15:35:40 +01:00
|
|
|
/* Endpoint data structure */
|
|
|
|
EpInfo epInfo[MIDI_MAX_ENDPOINTS];
|
|
|
|
/* MIDI Event packet buffer */
|
|
|
|
uint8_t recvBuf[MIDI_EVENT_PACKET_SIZE];
|
|
|
|
uint8_t readPtr;
|
|
|
|
|
|
|
|
void parseConfigDescr(byte addr, byte conf);
|
|
|
|
unsigned int countSysExDataSize(uint8_t *dataptr);
|
2016-04-14 23:04:38 +02:00
|
|
|
#ifdef DEBUG_USB_HOST
|
2016-03-21 15:35:40 +01:00
|
|
|
void PrintEndpointDescriptor( const USB_ENDPOINT_DESCRIPTOR* ep_ptr );
|
|
|
|
#endif
|
|
|
|
public:
|
|
|
|
uint16_t pid, vid;
|
|
|
|
USBH_MIDI(USB *p);
|
|
|
|
// Methods for recieving and sending data
|
|
|
|
uint8_t RecvData(uint16_t *bytes_rcvd, uint8_t *dataptr);
|
|
|
|
uint8_t RecvData(uint8_t *outBuf);
|
|
|
|
uint8_t SendData(uint8_t *dataptr, byte nCable=0);
|
|
|
|
uint8_t SendSysEx(uint8_t *dataptr, unsigned int datasize, byte nCable=0);
|
|
|
|
// backward compatibility functions
|
|
|
|
inline uint8_t RcvData(uint16_t *bytes_rcvd, uint8_t *dataptr){ return RecvData(bytes_rcvd, dataptr); };
|
|
|
|
inline uint8_t RcvData(uint8_t *outBuf){ return RecvData(outBuf); };
|
2016-04-14 23:15:22 +02:00
|
|
|
|
2016-03-21 15:35:40 +01:00
|
|
|
// USBDeviceConfig implementation
|
|
|
|
virtual uint8_t Init(uint8_t parent, uint8_t port, bool lowspeed);
|
|
|
|
virtual uint8_t Release();
|
|
|
|
virtual uint8_t GetAddress() { return bAddress; };
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif //_USBH_MIDI_H_
|