Added to LPC4088-USBHost the USBHostMidi class. Plugin an usb midi interface to the usb host of lpc4088 allows to send midi event to the midi interface. For the moment I can not be able to get event from the interface by using the attacheNoteOn or other triggers...

Dependencies:   FATFileSystem mbed-rtos

Fork of LPC4088-USBHost by Norimasa Okamoto

Committer:
Grag38
Date:
Mon Apr 06 12:46:58 2015 +0000
Revision:
1:d652de69bd1a
Parent:
0:148fca6fd246
Added USBHostMidi to drive midi interface.; ; Tested to send Midi messages from LPC4088. This works.; ; Need to test with incomming events.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
va009039 0:148fca6fd246 1 // BaseUsbHostDebug.h 2014/4/22
va009039 0:148fca6fd246 2 #pragma once
va009039 0:148fca6fd246 3
va009039 0:148fca6fd246 4 #ifdef USB_DEBUG
va009039 0:148fca6fd246 5 //#define USB_DBG(...) do{fprintf(stderr,"[%s@%d] ",__PRETTY_FUNCTION__,__LINE__);fprintf(stderr,__VA_ARGS__);} while(0);
va009039 0:148fca6fd246 6 #define USB_DBG_IF(C, ...) if(C){fprintf(stderr,"[%s@%d] ",__PRETTY_FUNCTION__,__LINE__);fprintf(stderr,__VA_ARGS__);}else{}
va009039 0:148fca6fd246 7 #define USB_DBG_ED_IF(C,A) if(C){fprintf(stderr,"[%s@%d]\n",__PRETTY_FUNCTION__,__LINE__);print_ed(stderr,A);}else{}
va009039 0:148fca6fd246 8 #define USB_DBG_ED(A) fprintf(stderr,"[%s@%d]\n",__PRETTY_FUNCTION__,__LINE__);print_ed(stderr,A);
va009039 0:148fca6fd246 9 #else
va009039 0:148fca6fd246 10 //#define USB_DBG(...) while(0);
va009039 0:148fca6fd246 11 #define USB_DBG_IF(...) while(0);
va009039 0:148fca6fd246 12 #define USB_DBG_ED_IF(C,A) while(0)
va009039 0:148fca6fd246 13 #define USB_DBG_ED(A) while(0)
va009039 0:148fca6fd246 14 #endif
va009039 0:148fca6fd246 15
va009039 0:148fca6fd246 16 #ifdef DEBUG
va009039 0:148fca6fd246 17 #define DBG(...) do{fprintf(stderr,"[%s@%d] ",__PRETTY_FUNCTION__,__LINE__);fprintf(stderr,__VA_ARGS__);} while(0);
va009039 0:148fca6fd246 18 #define DBG_PRINTF(...) do{fprintf(stderr,__VA_ARGS__);}while(0);
va009039 0:148fca6fd246 19 #define DBG_TD(A) do{fprintf(stderr,"[%s@%d]\n",__PRETTY_FUNCTION__,__LINE__);print_td(stderr,A);}while(0);
va009039 0:148fca6fd246 20 #define DBG_ED(A) do{fprintf(stderr,"[%s@%d]\n",__PRETTY_FUNCTION__,__LINE__);print_ed(stderr,A);}while(0);
va009039 0:148fca6fd246 21 #define DBG_ITD(A) do{fprintf(stderr,"[%s@%d]\n",__PRETTY_FUNCTION__,__LINE__);print_itd(stderr,A);}while(0);
va009039 0:148fca6fd246 22 #define DBG_IED(A) do{fprintf(stderr,"[%s@%d]\n",__PRETTY_FUNCTION__,__LINE__);print_ied(stderr,A);}while(0);
va009039 0:148fca6fd246 23 #define DBG_BYTES(A,B,C) do{fprintf(stderr,"[%s@%d] ",__PRETTY_FUNCTION__,__LINE__);print_bytes(stderr,A,B,C);}while(0);
va009039 0:148fca6fd246 24 #define DBG_HEX(A,B) do{fprintf(stderr,"[%s@%d]\n",__PRETTY_FUNCTION__,__LINE__);print_hex(stderr,A,B);}while(0);
va009039 0:148fca6fd246 25 #define DBG_OHCI(A) do{fprintf(stderr,"[%s@%d] %s: %08X\n",__PRETTY_FUNCTION__,__LINE__,#A,A);}while(0);
va009039 0:148fca6fd246 26 #else //DEBUG
va009039 0:148fca6fd246 27 #define DBG(...) while(0);
va009039 0:148fca6fd246 28 #define DBG_PRINTF(...) while(0);
va009039 0:148fca6fd246 29 #define DBG_TD(A) while(0);
va009039 0:148fca6fd246 30 #define DBG_ED(A) while(0);
va009039 0:148fca6fd246 31 #define DBG_ITD(A) while(0);
va009039 0:148fca6fd246 32 #define DBG_IED(A) while(0);
va009039 0:148fca6fd246 33 #define DBG_BYTES(A,B,C) while(0);
va009039 0:148fca6fd246 34 #define DBG_HEX(A,B) while(0);
va009039 0:148fca6fd246 35 #define DBG_OHCI(A) while(0);
va009039 0:148fca6fd246 36 #endif //DEBUG
va009039 0:148fca6fd246 37
va009039 0:148fca6fd246 38 void print_td(FILE* stream, HCTD* td);
va009039 0:148fca6fd246 39 void print_ed(FILE* stream, HCED* ed);
va009039 0:148fca6fd246 40 void print_itd(FILE* stream, HCITD* itd);
va009039 0:148fca6fd246 41 void print_ied(FILE* stream, HCED* ed);
va009039 0:148fca6fd246 42 void print_bytes(FILE* stream, char* s, uint8_t* buf, int len);
va009039 0:148fca6fd246 43 void print_hex(FILE* stream, uint8_t* p, int len);
va009039 0:148fca6fd246 44
va009039 0:148fca6fd246 45