aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Core/AVR8/USBInterrupt_AVR8.c
Commit message (Collapse)AuthorAgeFilesLines
* Fixed incorrect USB device state set when a suspended LUFA device is woken ↵Dean Camera2013-07-151-1/+1
| | | | while addressed but not configured (thanks to Balaji Krishnan)
* Update copyright year to 2013.Dean Camera2013-01-031-2/+2
|
* Minor documentation improvements.Dean Camera2012-10-051-1/+1
|
* Reintegrate the FullEPAddresses development branch into trunk.Dean Camera2012-04-141-2/+1
|
* Add architecture guards to all architecture-specific files, so that they can ↵Dean Camera2012-04-071-0/+5
| | | | be bulk-added to existing IDE projects without having to exclude unused architecture files.
* Update file contributor copyrights for 2012.Dean Camera2012-02-041-1/+1
|
* Update file header copyrights for 2012.Dean Camera2012-02-041-1/+1
|
* Updated all host mode demos and projects to use the ↵Dean Camera2011-07-081-4/+4
| | | | | | | | | | | | | | EVENT_USB_Host_DeviceEnumerationComplete() event callback for device configuration instead of manual host state machine manipulations in the main application task. Added new USB_Host_ConfigurationNumber global variable to indicate the selected configuration in an attached device. Renamed global state variables that are specific to a certain USB mode to clearly indicate which mode the variable relates to, by changing the USB_* prefix to USB_Device_* or USB_Host_*. Removed the HOST_STATE_WaitForDeviceRemoval and HOST_STATE_Suspended host state machine states, as these are no longer required. Altered the USB_Host_SetDeviceConfiguration() function to update the new USB_Host_ConfigurationNumber global as required. Moved out the Host mode standard request convenience/helper functions from the architecture specific Host driver files to the architecture agnostic HostStandardReq.c driver file.
* Move global interrupt enable/disable functions out to Common.h and document ↵Dean Camera2011-04-081-1/+1
| | | | them.
* Add in a new common Delay_MS() function, which provides a blocking delay for ↵Dean Camera2011-04-081-4/+3
| | | | | | | | all architectures. Remove use of avr-libc specific ATOMIC_BLOCK, replace with a new per-architecture set of inline functions to retrieve and manipulate the global interrupt enable bit for each architecture. Add in documentation for the USB controller common interrupt routine which must be linked to the interrupt controller in the user application on the AVR32 UC3 architecture.
* Fixed Remote Wakeup broken on the AVRs due to the mechanism only operating ↵Dean Camera2011-03-151-2/+0
| | | | | | when the SUSPI bit is set (thanks to Holger Steinhaus). Remove redundant setting of UIDE in the AVR8 and AVR32 USB controller drivers.
* Implemented on-demand PLL clock generation for the U4, U6 and U7 series USB ↵Dean Camera2011-03-151-0/+9
| | | | AVRs when automatic PLL mode is specified.
* Changed over the AVR8 USB controller interrupt management macros to be ↵Dean Camera2011-02-271-2/+2
| | | | inlined functions instead, for better compile-time validity checking and to keep the per-architecture source files as uniform as possible.
* Rename architecture specific driver files, to make them appear with uniquely ↵Dean Camera2011-02-201-0/+269
identifying filenames in the documentation.