You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
321 B
16 lines
321 B
2 years ago
|
#ifdef AUDIO_INTERFACE
|
||
|
|
||
|
#include "usb_names.h"
|
||
|
#define MIDI_NAME {'S','y','n','t','h','D','e','x','e','d'}
|
||
|
#define MIDI_NAME_LEN 10
|
||
|
|
||
|
// Do not change this part. This exact format is required by USB.
|
||
|
|
||
|
struct usb_string_descriptor_struct usb_string_product_name = {
|
||
|
2 + MIDI_NAME_LEN * 2,
|
||
|
3,
|
||
|
MIDI_NAME
|
||
|
};
|
||
|
|
||
|
#endif
|