aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Core/DeviceStandardReq.c
Commit message (Collapse)AuthorAgeFilesLines
* Documentation: Update copyrights to 2019.Dean Camera2019-01-081-2/+2
|
* Update copyrights for 2018.Dean Camera2018-01-041-2/+2
|
* Update copyrights for 2017.Dean Camera2017-04-181-2/+2
|
* Fixed invalid endpoint indexes causing memory corruption in device Clear/Set ↵Dean Camera2016-03-281-2/+15
| | | | Feature standard requests (thanks to Peter Popovec).
* Update copyrights to 2016.Dean Camera2016-01-311-2/+2
|
* Fixed broken USE_RAM_DESCRIPTORS compile time option when the ↵Dean Camera2015-12-151-2/+2
| | | | FIXED_NUM_CONFIGURATIONS compile time option is not enabled (thanks to Matlo).
* Update copyrights to 2015 (better late than never).Dean Camera2015-05-171-2/+2
|
* Update copyrights for 2014.Dean Camera2014-01-041-2/+2
|
* Fix broken XMEGA USB support.Dean Camera2013-01-271-1/+1
|
* Fixed incorrectly issuing STALL response to unsupported control request ↵Dean Camera2013-01-271-1/+1
| | | | SETUP packets, rather than in the data/status stage.
* Update copyright year to 2013.Dean Camera2013-01-031-2/+2
|
* Fixed hardware race condition that could cause failed device enumerations ↵Dean Camera2013-01-031-6/+5
| | | | | | | | for AVR8 and UC3 architectures (thanks to Mike Beyhs). Fixed incorrect Minimus board LED definitions (thanks to Joonas Lahtinen). Fixed incorrect LED masks for received data display in the Device GenericHID demos (thanks to Denys Berkovskyy).
* Minor documentation improvements.Dean Camera2012-10-051-1/+1
|
* Update LUFA core to be compatible with the AVR-GCC -Wswitch-default warning ↵Dean Camera2012-09-091-0/+3
| | | | switch.
* Fixed incorrect reponse to GET STATUS requests in device mode if ↵Dean Camera2012-04-151-4/+2
| | | | NO_DEVICE_SELF_POWER or NO_DEVICE_REMOTE_WAKEUP tokens are defined (thanks to Georg Glock).
* Update file contributor copyrights for 2012.Dean Camera2012-02-041-1/+1
|
* Update file header copyrights for 2012.Dean Camera2012-02-041-1/+1
|
* Run wspurify script on /trunk/ and /branches/ C source files, to remove any ↵Dean Camera2011-12-231-5/+5
| | | | trailing whitespace at the end of each line.
* Add missing "used" attribute to ATTR_INIT_SECTION to ensure functions ↵Dean Camera2011-09-221-0/+7
| | | | | | declared with that meta-attribute are not discarded by the linker. Add missing function and definition documentation.
* Updated all host mode demos and projects to use the ↵Dean Camera2011-07-081-9/+9
| | | | | | | | | | | | | | 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.
* Fix reversed descriptions for the AVR8 USB pad regulator enable/disable ↵Dean Camera2011-04-201-1/+1
| | | | masks (thanks to Omar).
* Move global interrupt enable/disable functions out to Common.h and document ↵Dean Camera2011-04-081-3/+3
| | | | them.
* Add in a new common Delay_MS() function, which provides a blocking delay for ↵Dean Camera2011-04-081-10/+10
| | | | | | | | 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.
* Renamed all low level Endpoint_Read_*, Endpoint_Write_* and ↵Dean Camera2011-04-041-7/+7
| | | | | | Endpoint_Discard_* functions to use the number of bits instead of a symbolic size (Byte, Word, DWord) so that the function names are applicable and correct across all architectures. Renamed all low level Pipe_Read_*, Pipe_Write_* and Pipe_Discard_* functions to use the number of bits instead of a symbolic size (Byte, Word, DWord) so that the function names are applicable and correct across all architectures.
* Ensure the library builds cleanly in device mode for architectures lacking ↵Dean Camera2011-03-271-11/+20
| | | | multiple address spaces.
* Add in new architecture attribute defines to selectively remove the EEPROM ↵Dean Camera2011-03-211-2/+3
| | | | and FLASH memory space functions on architectures which do not have seperate memory address spaces.
* Simplify the internal serial extraction routines for each architecture.Dean Camera2011-03-131-3/+4
|
* Add experimental support for the AVR32 UC3A4 microcontrollers.Dean Camera2011-03-131-3/+3
| | | | Add support for the inbuilt unique serial numbers in the UC3A3 and UC3A4 models.
* Add software FIFOs to the UC3B pipe control interfaces, to match the ↵Dean Camera2011-03-051-4/+4
| | | | endpoint control interfaces. Fix incorrect endianness for the Endpoint/Pipe read and write routines.
* Porting updates for the UC3B architecture - get UC3B partially enumerating ↵Dean Camera2011-03-051-4/+5
| | | | using a modified mouse demo on the EVK1101. Implement a software FIFO for the endpoint banks; datasheet hints that this can be done through hardware as on the AVR8 architecture, but the correct method to do this not discovered yet.
* Initial restructuring of the core USB driver module to support multiple ↵Dean Camera2011-02-191-0/+361
architectures in the future.