X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/d49cc0f7830319e701294e19937fae4de26ae8e2..9cad677ebbd2fc4ea069f98335f8467b16dbb2cb:/LUFA/Drivers/USB/USB.h diff --git a/LUFA/Drivers/USB/USB.h b/LUFA/Drivers/USB/USB.h index 3bc356d8e..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 @@ -366,11 +368,12 @@ /* 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" @@ -387,8 +390,6 @@ #if defined(USB_CAN_BE_BOTH) || defined(__DOXYGEN__) #include "LowLevel/OTG.h" #endif - - #include "HighLevel/ConfigDescriptor.h" - + #endif