aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB
Commit message (Collapse)AuthorAgeFilesLines
* Partial commit: change references to Drivers/AT90USBXXX to Drivers/Peripheral.Dean Camera2009-04-163-10/+17
|
* Fixed GenericHIDHost demo report write routine incorrect for control type ↵Dean Camera2009-04-1624-621/+1267
| | | | | | | | | | | | | | | | | | requests (thanks to Andrei Krainev). Removed Endpoint_ClearCurrentBank() and Pipe_ClearCurrentBank() in favour of new Endpoint_ClearIN(), Endpoint_ClearOUT(), Endpoint_ClearControlIN(), Endpoint_ClearControlOUT(), Pipe_ClearIN(), Pipe_ClearOUT(), Pipe_ClearControlIN() and Pipe_ClearControlOUT() macros (done to allow for the detection of packets of zero length). Renamed *_ReadWriteAllowed() macros to *_IsReadWriteAllowed() to remain consistent with the rest of the LUFA API. Endpoint_IsSetupReceived() macro has been renamed to Endpoint_IsSETUPReceived(), Endpoint_ClearSetupReceived() macro has been renamed to Endpoint_ClearControlSETUP(), the Pipe_IsSetupSent() macro has been renamed to Pipe_IsSETUPSent() and the Pipe_ClearSetupSent() macro is no longer applicable and should be removed - changes made to compliment the new endpoint and pipe bank management API. Updated all demos, bootloaders and projects to use the new endpoint and pipe management APIs (thanks to Roman Thiel). Updated library doxygen documentation, added groups, changed documentation macro functions to real functions for clarity. Removed old endpoint and pipe aliased read/write/discard routines which did not have an explicit endian specifier for clarity. Removed the ButtLoadTag.h header file, as no one used for its intended purpose anyway.
* The USB_Host_SendControlRequest() function no longer automatically selects ↵Dean Camera2009-04-144-2/+9
| | | | | | the Control pipe (pipe 0), so that other control type pipes can be used with the function. The USB Host management task now saves and restores the currently selected pipe before and after the task completes.
* Removed all binary constants and replaced with decimal or hexadecimal ↵Dean Camera2009-04-058-60/+60
| | | | constants so that unpatched GCC compilers can still build the code without having to be itself patched and recompiled first.
* Move StdRequestType.h, StreamCallbacks.h, USBMode.h from the LowLevel USB ↵Dean Camera2009-04-0523-27/+34
| | | | driver directory to the HighLevel USB driver directory, where they are more suited.
* All comments in the library, bootloaders, demos and projects have now been ↵Dean Camera2009-04-0114-78/+78
| | | | spell-checked and spelling mistakes/typos corrected.
* Commit for the 090401 release.Dean Camera2009-03-314-27/+34
|
* Minor documentation fixes to correct formatting and typos.Dean Camera2009-03-291-3/+3
|
* Fixed USBTask.h not conditionally including HostChapter9.h only when ↵Dean Camera2009-03-263-3/+8
| | | | CAN_BE_DEVICE is defined (thanks to Ian Gregg).
* Fixed documentation typoes and preprocessor checks relating to misspellings ↵Dean Camera2009-03-252-3/+3
| | | | of the USE_RAM_DESCRIPTORS token (thanks to Ian Gregg).
* Added extra output to makefiles to indicate the currently selected BOARD ↵Dean Camera2009-03-162-4/+4
| | | | parameter.
* Renamed NO_CLEARSET_FEATURE_REQUEST compile time token to ↵Dean Camera2009-03-112-3/+7
| | | | NO_FEATURELESS_CONTROL_ONLY_DEVICE and expanded its function to also remove parts of the Get Status chapter 9 request, to further reduce code usage.
* Fixed incorrect/missing control status stage transfers on demos, bootloaders ↵Dean Camera2009-03-103-8/+8
| | | | and applications (thanks to Nate Lawson).
* Updated makefiles to reflect new dfu-ee programming target invocations ↵Dean Camera2009-03-042-127/+163
| | | | | | | | | | (supplied by Opendous, Inc.). Renamed the ATTR_ALWAYSINLINE function attribute macro to ATTR_ALWAYS_INLINE to match the style of the other function attribute macro names. Added ATTR_ALWAYS_INLINE attribute to several inlined library functions, to ensure they are inlined in all circumstances. Cleanups to Endpoint.h and Pipe.h. Added better documentation for the endpoint and pipe interrupts.
* Updated changelog to reflect recent commit changes.Dean Camera2009-03-032-2/+2
|
* Makefiles and library modified to add a new F_CLOCK constant to give the ↵Dean Camera2009-02-261-2/+7
| | | | | | unprescaled master input clock frequency, so that the correct PLL mask can be determined even when the CPU (F_CPU) clock rate is prescaled outside the normal input range of the PLL. Started to clean up the AVRISP Programmer project code, donated by Opendous Inc.
* Moved all source to the trunk directory.Dean Camera2009-02-2331-0/+7759