987288fd41
- Add Adafruit TinyUSB Library dependency - Create tusb_config.h enabling MIDI class - USB device named 'Loopy Foot Controller' - is_connected() check before sending
22 lines
304 B
C
22 lines
304 B
C
#ifndef TUSB_CONFIG_H
|
|
#define TUSB_CONFIG_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define CFG_TUD_MIDI 1
|
|
#define CFG_TUD_MIDI_RX_BUFSIZE 64
|
|
#define CFG_TUD_MIDI_TX_BUFSIZE 64
|
|
|
|
#define CFG_TUD_CDC 0
|
|
#define CFG_TUD_MSC 0
|
|
#define CFG_TUD_HID 0
|
|
#define CFG_TUD_NET 0
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|