usb_cdc_ep: Change default endpoint numbers

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>
This commit is contained in:
Kevin O'Connor
2022-06-11 17:53:10 -04:00
parent f5d5f53914
commit 11828387d9
2 changed files with 3 additions and 3 deletions

View File

@@ -3,9 +3,9 @@
// Default USB endpoint ids
enum {
USB_CDC_EP_ACM = 1,
USB_CDC_EP_BULK_IN = 1,
USB_CDC_EP_BULK_OUT = 2,
USB_CDC_EP_BULK_IN = 3,
USB_CDC_EP_ACM = 3,
};
#endif // usb_cdc_ep.h