X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/0e6d5cf5b4fea133cbd3c16b958617deb42332cf..9cad677ebbd2fc4ea069f98335f8467b16dbb2cb:/LUFA/Drivers/USB/USB.h diff --git a/LUFA/Drivers/USB/USB.h b/LUFA/Drivers/USB/USB.h index 484978bed..cb59cc6ac 100644 --- a/LUFA/Drivers/USB/USB.h +++ b/LUFA/Drivers/USB/USB.h @@ -29,10 +29,12 @@ */ /** \file + * \brief Master include file for the library USB functionality. * - * Master include file for the library USB functionality. This file should be included in all user projects making - * use of the USB portions of the library, instead of including any headers in the USB/LowLevel or USB/HighLevel - * directories. + * Master include file for the library USB functionality. + * + * This file should be included in all user projects making use of the USB portions of the library, instead of + * including any headers in the USB/LowLevel/ or USB/HighLevel/ subdirectories. */ /** @defgroup Group_USB USB - LUFA/Drivers/USB/USB.h @@ -45,10 +47,10 @@ * - LUFA/Drivers/USB/LowLevel/HostChapter9.c * - LUFA/Drivers/USB/LowLevel/LowLevel.c * - LUFA/Drivers/USB/LowLevel/Pipe.c + * - LUFA/Drivers/USB/LowLevel/USBInterrupt.c + * - LUFA/Drivers/USB/HighLevel/ConfigDescriptor.c * - LUFA/Drivers/USB/HighLevel/Events.c - * - LUFA/Drivers/USB/HighLevel/USBInterrupt.c * - LUFA/Drivers/USB/HighLevel/USBTask.c - * - LUFA/Drivers/USB/HighLevel/ConfigDescriptor.c * * \section Module Description * Driver and framework for the USB controller hardware on the USB series of AVR microcontrollers. This module @@ -360,18 +362,18 @@ /* Preprocessor Checks: */ #if (!defined(USB_SERIES_2_AVR) && !defined(USB_SERIES_4_AVR) && \ - !defined(USB_SERIES_6_AVR) && !defined(USB_SERIES_7_AVR) && \ - !defined(USB_SERIES_UC3B_AVR)) + !defined(USB_SERIES_6_AVR) && !defined(USB_SERIES_7_AVR)) #error The currently selected AVR model is not supported under the USB component of the LUFA library. #endif /* Includes: */ #include "HighLevel/USBTask.h" - #include "HighLevel/USBInterrupt.h" #include "HighLevel/Events.h" #include "HighLevel/StdDescriptors.h" + #include "HighLevel/ConfigDescriptor.h" #include "LowLevel/LowLevel.h" + #include "LowLevel/USBInterrupt.h" #if defined(USB_CAN_BE_HOST) || defined(__DOXYGEN__) #include "LowLevel/Host.h" @@ -388,8 +390,6 @@ #if defined(USB_CAN_BE_BOTH) || defined(__DOXYGEN__) #include "LowLevel/OTG.h" #endif - - #include "HighLevel/ConfigDescriptor.h" - + #endif