aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/HighLevel/DeviceStandardReq.c
Commit message (Collapse)AuthorAgeFilesLines
* Changed over www.fourwalledcubicle.com links to the new www.lufa-lib.org ↵Dean Camera2010-10-281-1/+1
| | | | redirect domain, including the new aliased links for LUFA-related pages such as the various download/source control mirrors and support lists.
* Better algorithm to extract and convert the internal device serial number ↵Dean Camera2010-10-241-5/+5
| | | | | | into a string descriptor (if present). Fix incorrect warning text when an unsuitable F_CLOCK value is given.
* Clean up excessive whitespace at the end of each line using the wspurify ↵Dean Camera2010-10-131-39/+40
| | | | tool made by Laszlo Monda
* Fixed random enumeration failure while in device mode due to interrupts ↵Dean Camera2010-10-121-29/+28
| | | | causing the Set Address request to exceed maximum timings.
* Changed default value for the reset polarity parameter in the AVRISP-MKII ↵Dean Camera2010-09-291-1/+4
| | | | | | project so that it defaults to active low drive. Fixed incorrect USB_DeviceState value when unconfiguring the device without an address set.
* Rename internal suspend and wake up USB interrupt macros so that they follow ↵Dean Camera2010-09-191-2/+0
| | | | the same naming scheme as the other USB ISR macros.
* Fixed SET FEATURE and CLEAR FEATURE control requests directed at an ↵Dean Camera2010-09-131-12/+12
| | | | unconfigured endpoint causing request timeouts.
* Changed the signature of the CALLBACK_USB_GetDescriptor() callback function ↵Dean Camera2010-08-241-2/+2
| | | | so that the descriptor pointer is const, to remove the need for extra casting inside the callback (thanks to Jonathan Kollasch).
* Move and rename DevChaper9.c/.h and HostChapter9.c/.h to the HighLevel ↵Dean Camera2010-07-211-0/+395
directory, new named DeviceStandardReq.c/.h and HostStandardReq.c/.h. Rename LowLevel.c/.h to USBController.c/.h. Remove dependancies on the complete <avr/io.h> header in the HighLevel USB driver directory, to ensure less work is required in later (possible) ports.