aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Core/ConfigDescriptor.h
Commit message (Collapse)AuthorAgeFilesLines
* Removed the ENDPOINT_DESCRIPTOR_DIR_* macros in favour of the shorter ↵Dean Camera2011-07-191-5/+0
| | | | ENDPOINT_DIR_* macros, which can now be used with both Endpoint_ConfigureEndpoint() and in the device descriptors.
* Fixed compile error when FIXED_CONTROL_ENDPOINT_SIZE compile time option was ↵Dean Camera2011-06-201-1/+1
| | | | | | disabled, and a USE_*_DESCRIPTORS compile time option was not enabled on the AVR8s. Add C++ compatibility to some header files currently missing extern "C" linkage.
* Fixed possible invalid program execution when in host mode if corrupt ↵Dean Camera2011-05-141-4/+9
| | | | | | | | descriptor lengths are supplied by the attached device. Minor code cleanups to add const and reformat where missing, as well as abstract out the internal device signature start address into a macro, so that it can be altered to suit particular devices within a single architecture if needed. Add missing documentation to the USB_Device_States_t enum.
* Oops - ensure that only the relevant/available interrupts are defined and ↵Dean Camera2011-02-271-1/+1
| | | | | | used on each architecture. Make all USB driver headers include USBMode.h first, to ensure that the relevant USB mode macros are defined.
* Start update of documentation to support possible multiple architectures in ↵Dean Camera2011-02-201-6/+6
| | | | the future - alter \file documentation to automatically copy in the module documentation where possible.
* Initial restructuring of the core USB driver module to support multiple ↵Dean Camera2011-02-191-0/+285
architectures in the future.