X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/6a10d6b465be27db090d760dc0fbe722c94e4344..6380d057f8911f5d09bdffff4220aa9602df49e2:/LUFA/Drivers/USB/HighLevel/USBInterrupt.h diff --git a/LUFA/Drivers/USB/HighLevel/USBInterrupt.h b/LUFA/Drivers/USB/HighLevel/USBInterrupt.h index 8438a589e..65e0b5fb1 100644 --- a/LUFA/Drivers/USB/HighLevel/USBInterrupt.h +++ b/LUFA/Drivers/USB/HighLevel/USBInterrupt.h @@ -34,6 +34,14 @@ * events as VBUS interrupts (on supported USB AVR models), device connections and disconnections, etc. */ +/** \ingroup Group_USB + * @defgroup Group_USBInterrupt Endpoint and Pipe Interrupts + * + * Functions, macros, variables, enums and types related to endpoint and pipe interrupts. + * + * @{ + */ + #ifndef __USBINTERRUPT_H__ #define __USBINTERRUPT_H__ @@ -43,7 +51,7 @@ #include "../../../Common/Common.h" #include "../LowLevel/LowLevel.h" - #include "../LowLevel/USBMode.h" + #include "USBMode.h" #include "Events.h" /* Enable C linkage for C++ Compilers: */ @@ -79,7 +87,7 @@ #define USB_INT_IsEnabled(int) ((USB_INT_GET_EN_REG(int) & USB_INT_GET_EN_MASK(int)) ? true : false) /** Returns boolean true if the given interrupt flag is set (i.e. the condition for the interrupt has occurred, - * but the interrupt vector is not neccesarily enabled), otherwise returns false. + * but the interrupt vector is not necessarily enabled), otherwise returns false. */ #define USB_INT_HasOccurred(int) ((USB_INT_GET_INT_REG(int) & USB_INT_GET_INT_MASK(int)) ? true : false) @@ -220,5 +228,7 @@ #if defined(__cplusplus) } #endif - + #endif + +/** @} */