mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-12 13:27:18 +03:00
14 lines
191 B
C
14 lines
191 B
C
|
#pragma once
|
||
|
|
||
|
#include "usb.h"
|
||
|
|
||
|
#define USB_EP0_SIZE 8
|
||
|
|
||
|
/* String descriptors */
|
||
|
enum UsbDevDescStr {
|
||
|
UsbDevLang = 0,
|
||
|
UsbDevManuf = 1,
|
||
|
UsbDevProduct = 2,
|
||
|
UsbDevSerial = 3,
|
||
|
};
|