mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2025-12-12 04:41:26 +04: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,
|
||
|
|
};
|