mirror of
https://github.com/andreili/klipper.git
synced 2025-08-24 03:44:06 +02:00
Change the default endpoint numbers to make it possible to implement the "gs_usb" canbus protocol. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
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_BULK_IN = 1,
|
|
USB_CDC_EP_BULK_OUT = 2,
|
|
USB_CDC_EP_ACM = 3,
|
|
};
|
|
|
|
#endif // usb_cdc_ep.h
|