mirror of https://github.com/midilab/uClock
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.
20 lines
585 B
20 lines
585 B
2 years ago
|
// To give your project a unique name, this code must be
|
||
|
// placed into a .c file (its own tab). It can not be in
|
||
|
// a .cpp file or your main sketch (the .ino file).
|
||
|
|
||
|
#include "usb_names.h"
|
||
|
|
||
|
// Edit these lines to create your own name. The length must
|
||
|
// match the number of characters in your custom name.
|
||
|
|
||
|
#define MIDI_NAME {'u','c','l','o','c','k','_','1'}
|
||
|
#define MIDI_NAME_LEN 8
|
||
|
|
||
|
// 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
|
||
|
};
|