aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/LowLevel/Endpoint.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-05-14 10:07:08 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-05-14 10:07:08 +0000
commit32f0f605efa293430a47d60bb857695ff6937d21 (patch)
tree9ab514c6088c9f044c029fdf36c880ecdf700a71 /LUFA/Drivers/USB/LowLevel/Endpoint.h
parent0d5baf9bb3e88ebcbc53cc9a71566582d585f7dd (diff)
downloadlufa-32f0f605efa293430a47d60bb857695ff6937d21.tar.gz
lufa-32f0f605efa293430a47d60bb857695ff6937d21.tar.bz2
lufa-32f0f605efa293430a47d60bb857695ff6937d21.zip
Removed all user pipe/endpoint interrupt APIs, added internal library support for interrupt driven control endpoints when in device mode by defining INTERRUPT_CONTROL_ENDPOINT token and passing it to the compiler via the -D switch.
Diffstat (limited to 'LUFA/Drivers/USB/LowLevel/Endpoint.h')
-rw-r--r--LUFA/Drivers/USB/LowLevel/Endpoint.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/LUFA/Drivers/USB/LowLevel/Endpoint.h b/LUFA/Drivers/USB/LowLevel/Endpoint.h
index 4882acc3b..9a553d33f 100644
--- a/LUFA/Drivers/USB/LowLevel/Endpoint.h
+++ b/LUFA/Drivers/USB/LowLevel/Endpoint.h
@@ -140,19 +140,6 @@
#else
#define ENDPOINT_TOTAL_ENDPOINTS 1
#endif
-
- /** Interrupt definition for the endpoint SETUP interrupt (for CONTROL type endpoints). Should be
- * used with the USB_INT_* macros located in USBInterrupt.h.
- *
- * This interrupt will fire if enabled on a CONTROL type endpoint if a new control packet is
- * received from the host.
- *
- * \note This interrupt must be enabled and cleared on *each* endpoint which requires it (after the
- * endpoint is selected), and will fire the common endpoint interrupt vector.
- *
- * \see \ref ENDPOINT_PIPE_vect for more information on the common pipe and endpoint interrupt vector.
- */
- #define ENDPOINT_INT_SETUP UEIENX, (1 << RXSTPE), UEINTX, (1 << RXSTPI)
/* Pseudo-Function Macros: */
#if defined(__DOXYGEN__)