mirror of
https://github.com/andreili/katapult.git
synced 2025-08-23 19:34:06 +02:00
12 lines
206 B
C
12 lines
206 B
C
#ifndef __GENERIC_USB_CDC_EP_H
|
|
#define __GENERIC_USB_CDC_EP_H
|
|
|
|
// Default USB endpoint ids
|
|
enum {
|
|
USB_CDC_EP_ACM = 1,
|
|
USB_CDC_EP_BULK_OUT = 2,
|
|
USB_CDC_EP_BULK_IN = 3,
|
|
};
|
|
|
|
#endif // usb_cdc_ep.h
|