aboutsummaryrefslogtreecommitdiffstats
path: root/src/atsam
diff options
context:
space:
mode:
authorAlex Maclean <monkeh@monkeh.net>2023-10-13 02:02:26 +0100
committerGitHub <noreply@github.com>2023-10-12 21:02:26 -0400
commitb1f597c550dc90386f417a2d3b4fc35b4189c902 (patch)
tree91c90cbd40de99ab6236e2a0e90b380a0a4ddee4 /src/atsam
parentecc9bbf52a7dfb69a535b6bb87ad887c6e957387 (diff)
downloadkutter-b1f597c550dc90386f417a2d3b4fc35b4189c902.tar.gz
kutter-b1f597c550dc90386f417a2d3b4fc35b4189c902.tar.xz
kutter-b1f597c550dc90386f417a2d3b4fc35b4189c902.zip
atsam: Remove USB endpoint header (#6365)
The atsam USB hardware only requires that the ACM endpoint be endpoint 3. As of commit 11828387 the atsam chips can therefore use the default USB endpoints. This will allow CAN bridge support for the SAME70 to function (upstream host driver has hardcoded endpoints). Signed-off-by: Alex Maclean <monkeh@monkeh.net>
Diffstat (limited to 'src/atsam')
-rw-r--r--src/atsam/usb_cdc_ep.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/atsam/usb_cdc_ep.h b/src/atsam/usb_cdc_ep.h
deleted file mode 100644
index bcf1d3e3..00000000
--- a/src/atsam/usb_cdc_ep.h
+++ /dev/null
@@ -1,10 +0,0 @@
-#ifndef __SAM3_USB_CDC_EP_H
-#define __SAM3_USB_CDC_EP_H
-
-enum {
- USB_CDC_EP_ACM = 3,
- USB_CDC_EP_BULK_OUT = 1,
- USB_CDC_EP_BULK_IN = 2,
-};
-
-#endif // usb_cdc_ep.h