aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Core/AVR8
Commit message (Collapse)AuthorAgeFilesLines
* Documentation: Fix Doxygen grouping.Dean Camera2019-09-045-24/+24
|
* Documentation: Update copyrights to 2019.Dean Camera2019-01-0821-42/+42
|
* Optimize Endpoint_Discard_Stream() and Endpoint_Null_Stream().Dean Camera2018-12-081-16/+6
|
* Ensure USE_INTERNAL_SERIAL is set to NO_DESCRIPTOR if internal serial is ↵Dean Camera2018-02-181-6/+7
| | | | disabled.
* Make USE_INTERNAL_SERIAL configureable as makefile defineNicoHood2018-01-221-0/+2
|
* Update copyrights for 2018.Dean Camera2018-01-0421-42/+42
|
* Update copyrights for 2017.Dean Camera2017-04-1821-42/+42
|
* Update copyrights to 2016.Dean Camera2016-01-3121-42/+42
|
* Update copyrights to 2015 (better late than never).Dean Camera2015-05-1721-42/+42
|
* Fix possible infinite loop in the control stream write template functions.Dean Camera2014-06-081-0/+2
|
* Update copyrights for 2014.Dean Camera2014-01-0421-123/+123
|
* AVR8: Add option to keep 3.3V regulator enabledMichael Hanselmann2013-12-202-1/+10
| | | | | | | | | | | | | | | | | | | | | | | | | The documentation contains example code[1] on how to restart into the bootloader. In the process of preparing for the reset, USB is disabled using “USB_Disable()”. For hardware making use of the AVR8's internal 3.3V regulator that call would also disable the regulator, resetting the processor immediately rather than setting the boot key and letting the watchdog reset the processor. This patch adds a new flag to be given to “USB_Init()” or to be defined in “USE_STATIC_OPTIONS” telling “USB_Disable()” to keep the regulator enabled. On November 1st, 2013 this issue was already mentioned on the mailing list[2], but no fix came from that discussion. [1] <http://www.fourwalledcubicle.com/files/LUFA/Doc/130901/ html/_page__software_bootloader_start.html> [2] <https://groups.google.com/d/msg/lufa-support/uwrFpRQpJzU/e9I6UK5jMJQJ> Signed-off-by: Michael Hanselmann <public@hansmi.ch>
* Minor documentation corrections.Dean Camera2013-10-061-1/+1
|
* 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)
* Fix missing bitshift in the AVR8 Pipe_GetBoundEndpointAddress() function.Dean Camera2013-05-141-1/+1
|
* Fix Pipe_GetBoundEndpointAddress() returning bad values in some circumstances.Dean Camera2013-05-101-1/+2
|
* Minor documentation improvements.Dean Camera2013-05-041-6/+6
|
* Move USB mode enum into the top level USB controller header, as it is common ↵Dean Camera2013-04-281-14/+0
| | | | to all architectures (even if not all modes are supported).
* Fixed possible register corruption in USB Host mode on AVR8 devices when ↵Dean Camera2013-04-211-4/+4
| | | | ORDERED_EP_CONFIG is used (thanks to Martin Aakerberg).
* Minor documentation improvements.Dean Camera2013-03-182-2/+2
|
* Suppress unused function parameter warnings in the USB driver.Dean Camera2013-01-271-1/+3
|
* Fix broken XMEGA USB support.Dean Camera2013-01-271-2/+2
|
* Update copyright year to 2013.Dean Camera2013-01-0321-42/+42
|
* Fixed hardware race condition that could cause failed device enumerations ↵Dean Camera2013-01-031-3/+6
| | | | | | | | 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).
* Remove support for devices that were not put into production.Dean Camera2013-01-032-6/+6
|
* Clean up unnecessary CPPCheck static analysis suppression comments, force ↵Dean Camera2012-10-144-4/+0
| | | | Doxygen and GCC compiler specific macros as being always undefined when performing a static analysis of the code.
* Minor documentation improvements.Dean Camera2012-10-0521-21/+21
|
* Update LUFA core to be compatible with the AVR-GCC -Wswitch-default warning ↵Dean Camera2012-09-092-4/+13
| | | | switch.
* Fixed logic hole breaking USB operations on a USB controller with only one ↵Dean Camera2012-08-282-5/+7
| | | | supported USB mode and no USB_DEVICE_ONLY or USB_HOST_ONLY configuration token set.
* Minor documentation corrections.Dean Camera2012-08-271-20/+30
|
* Minor documentation improvements.Dean Camera2012-08-181-3/+3
|
* Added workaround for broken VBUS detection on AVR8 devices when a bootloader ↵Dean Camera2012-08-121-0/+7
| | | | starts the application via a software jump without first turning off the OTG pad (thanks to Simon Inns)
* Minor documentation improvements.Dean Camera2012-07-151-6/+6
|
* Add svn:eol-style property on all source files where it was missing. Fix ↵Dean Camera2012-06-213-1361/+1361
| | | | line endings of all makefile, *.c and *.h files.
* Add checks to the endpoint and pipe configure functions and fail if the ↵Dean Camera2012-06-102-1/+9
| | | | requested endpoint or pipe number is above the maximum for that device.
* Spell check source code, fix mistakes.Dean Camera2012-06-091-1/+1
|
* Update SVN line endings property on newer source files to native.Dean Camera2012-06-071-221/+221
|
* Upgrade Doxygen configuration files for Doxygen 1.8.1, fix broken stylesheet ↵Dean Camera2012-05-202-22/+22
| | | | and footer HTML, add explicit spacing into documentation code fragments to prevent Doxygen from removing empty lines in the output.
* Add missing CPPCheck unusedFunction check suppressions on the USB template ↵Dean Camera2012-05-194-0/+4
| | | | functions.
* Added build test to verify correct compilation of all bootloaders using all ↵Dean Camera2012-05-131-2/+2
| | | | | | supported devices. Fixed compile error with the unreleased ATMEGA32U6 device.
* Reintegrate the FullEPAddresses development branch into trunk.Dean Camera2012-04-147-189/+165
|
* Add architecture guards to all architecture-specific files, so that they can ↵Dean Camera2012-04-078-1/+35
| | | | be bulk-added to existing IDE projects without having to exclude unused architecture files.
* Fixed possible enumeration error if the user application selects the ↵Dean Camera2012-02-261-10/+7
| | | | non-Control pipe between the Powered and Default states of the host state machine.
* Minor documentation fixes - change \note entries to \warning where ↵Dean Camera2012-02-245-44/+37
| | | | appropriate and remove/update old documentation.
* Allow serial strings to be generated on the older AVR8 devices which do not ↵Dean Camera2012-02-081-2/+2
| | | | explicitly state they contain unique values in the datasheet, as this appears to be implemented in hardware.
* Added INVERTED_VBUS_ENABLE_LINE and NO_AUTO_VBUS_MANAGEMENT compile time ↵Dean Camera2012-02-052-0/+17
| | | | options (thanks to Opendous Inc.).
* Update file contributor copyrights for 2012.Dean Camera2012-02-0421-21/+21
|
* Update file header copyrights for 2012.Dean Camera2012-02-0421-21/+21
|
* Minor documentation improvements.Dean Camera2012-02-011-2/+2
|
* Run wspurify script on /trunk/ and /branches/ C source files, to remove any ↵Dean Camera2011-12-2313-36/+41
| | | | trailing whitespace at the end of each line.