aboutsummaryrefslogtreecommitdiffstats
path: root/Bootloaders
Commit message (Collapse)AuthorAgeFilesLines
* Standardized the naming scheme given to configuration descriptor ↵Dean Camera2010-03-226-21/+21
| | | | | | sub-elements in the Device mode demos, bootloaders and projects. Fix errors in the MouseHostWithParser demo from incorrect use of the HID_ALIGN_DATA() macro.
* New BOARD value option BOARD_NONE (equivelent to not specifying BOARD) which ↵Dean Camera2010-02-044-4/+4
| | | | | | will remove all board hardware drivers which do not adversely affect the code operation (currently only the LEDs driver). Spell-check code/comments in the Webserver/AVRISP-MKII projects.
* Exlude the "INCLUDE_FROM_*" macros from the individual project's documentation.Dean Camera2010-02-033-3/+6
|
* Update driver INF files - change manufacturer name from the original ↵Dean Camera2010-01-291-1/+1
| | | | template's name to the Four Walled Cubicle website.
* Fix up project documentation files' overview tables, so that multiple items ↵Dean Camera2010-01-282-7/+7
| | | | occupy multiple lines in the same cell, rather than multiple cells.
* Add Webserver project Doxygen configuration file and overview document.Dean Camera2010-01-253-3/+3
| | | | Fix Doxygen configuration files' input file exclusion filters.
* Fixed DFU bootloader programming not discarding the correct number of filler ↵Dean Camera2010-01-241-2/+2
| | | | bytes from the host when non-aligned programming ranges are specified (thanks to Thomas Bleeker).
* Fixed invalid USB controller PLL prescaler values for the ATMEGAxxU2 controllersDean Camera2010-01-152-25/+42
| | | | | | Fixed lack of support for the ATMEGA32U2 in the DFU and CDC class bootloaders Changed incomplete Webserver project over to using the uIP timer library.
* Update Doxygen configuration files to the latest Doxygen version.Dean Camera2010-01-065-2524/+2837
|
* Update copyright year to 2010.Dean Camera2009-12-3018-35/+35
|
* Remove duplicate #include of <avr/wdt.h> in the TeensyHID bootloader.Dean Camera2009-12-281-2/+0
|
* Fix MIT license language to make its intent clearer.Dean Camera2009-12-2817-119/+119
|
* Added const where possible to the source functions in the Projects directory.Dean Camera2009-12-261-1/+1
| | | | | | Added command timeout to the AVRISP project so that incorrectly connected targets no longer freeze the device. Removed string descriptors from the TeensyHID bootloader to reduce its size.
* Fix TeensyHID bootloader - change vendor page in the descriptors to match ↵Dean Camera2009-12-233-43/+4
| | | | | | the undocumented page needed for the new Teensy 2.0 boards. Commit for the 091223 release.
* Ooops - TeensyHID bootloader makefile should use a 16MHz FCPU, not 8MHz.Dean Camera2009-12-211-1/+1
|
* Ensure that unsupported SetFeature/ClearFeature request targets cause a ↵Dean Camera2009-12-211-1/+1
| | | | STALL back to the host.
* Correct TeensyHID bootloader descriptors to use the correct revision code ↵Dean Camera2009-12-211-1/+1
| | | | for the ATMEGA32U4 based Teensy revision.
* Added new NO_DEVICE_SELF_POWER and NO_DEVICE_REMOTE_WAKEUP compile time options.Dean Camera2009-12-206-3/+9
|
* Fixed TeensyHID bootloader not enumerating to the host correctly.Dean Camera2009-12-204-50/+45
|
* Increase timeout of Mass Storage and Still Image host commands to 10 seconds ↵Dean Camera2009-12-091-2/+2
| | | | | | | | (up from 5) to account for slow-processing devices. Added brace guards to macros with parameters to prevent unintended changed evaluation of the macro expression. Minor code cleanups (remove redundant comments, fix spacing, etc.).
* Make sure that USB_STREAM_TIMEOUT_MS is set in the MassStorageHost ↵Dean Camera2009-12-081-3/+3
| | | | | | ClassDriver demo, so that slow devices don't time out the data pipe. Increase pipe timeout in both MassStorageHost demos to 5 seconds to account for the really slow devices. Fix TeensyHID bootloader not properly shutting down the USB interface to trigger a disconnection on the host before resetting the AVR.
* Add to the existing CDC Class Driver's CreateStream() function documentation ↵Dean Camera2009-11-292-7/+3
| | | | to explicitly state that the created streams are bidirectional.
* Minor code cleanups for clarity.Dean Camera2009-11-112-4/+3
|
* Spell check all source code variables, comments and strings.Dean Camera2009-11-095-5/+5
|
* Fix invalid Event name rule in demo/project makefiles.Dean Camera2009-10-164-4/+4
|
* Make Audio device demos compatible with AVRs running at 16MHz instead of 8MHz.Dean Camera2009-10-124-89/+11
| | | | Fix up demo documentation device compatibility list to be as general as possible to reduce changes required as Atmel releases more devices within the same USB AVR series.
* Added stdio.h stream examples for the virtual CDC UART in the CDC host demos.Dean Camera2009-10-111-1/+0
| | | | Removed accidental reference to the incomplete MIDI class bootloader in the Bootloader folder makefile.
* Application documentation/comment cleanup.Dean Camera2009-10-084-4/+2
|
* Add new MIDIHost LowLevel demo application.Dean Camera2009-10-081-2/+2
| | | | Make unfinished device mode applications use the VID/PID reserved for LUFA development devices.
* Removed mostly useless "TestApp" demo, as it was mainly useful only for ↵Dean Camera2009-09-3011-1/+3399
| | | | | | | | checking for sytax errors in the library. MIDI device demos now receive MIDI events from the host and display note ON messages via the board LEDs. Added beginnings of a MIDI class bootloader.
* Added new Pipe_IsFrozen() macro to determine if the currently selected pipe ↵Dean Camera2009-09-201-2/+2
| | | | | | | | is frozen. Added new USB_GetHIDReportSize() function to the HID report parser to retrieve the size of a given report by its ID. More additions to the unfinished HID Host Class Driver.
* Remove USE_NONSTANDARD_DESCRIPTOR_NAMES compile time token, split out ↵Dean Camera2009-09-093-3/+0
| | | | | | standard descriptors into seperate USB_Descriptor_* and USB_StdDescriptor_* structures so that both can be used within the one project. Add guard to the HID Host Class driver SetProtocol command, to ensure that the device supports boot protocol mode before issuing the request.
* Add link to third-party signed version of the official FLIP DFU driver for ↵Dean Camera2009-09-072-3/+7
| | | | | | 64-bit Windows OSes to the DFU bootloader readme file. Add HTML anchor links to URLs in the documentation to ensure that they are rendered correctly in the generated documentation.
* Remove information about 64 bit Windows OS signing requirements for the CDC ↵Dean Camera2009-09-071-5/+0
| | | | based demos -- apparently the native CDC driver can be installed without first disabling the OS's driver signing requirements.
* Corrected incorrect signature bytes for the AT90USB82 and added support for ↵Dean Camera2009-09-072-15/+26
| | | | | | the ATMEGAXX2 variant AVRs to the DFU bootloader. Added warning to the EVENT_USB_Device_Connect() and EVENT_USB_Device_Disconnect() events that they may be fired multiple times during device enumeration on the series 2 AVRs.
* Fixed DFU and CDC class bootloaders on the AT90USBXXX2 series USB AVRs.Dean Camera2009-09-064-20/+0
|
* Add in new invalid event hook check targets to project makefiles to produce ↵Dean Camera2009-09-063-90/+180
| | | | | | | | compilation errors when invalid event names are used in a project. Re-add in flip, flip-ee, dfu and dfu-ee targets to project makefiles (thanks to Opendous Inc.) Fix allowable F_CPU values comment in project makefiles.
* Added 64 bit OS driver installation instructions to the readme for all CDC ↵Dean Camera2009-09-061-28/+38
| | | | based projects.
* Changed Still Image Host class driver to auto-fill TransactionID element of ↵Dean Camera2009-09-061-31/+82
| | | | | | | | sent headers depending on the current session state. CDC based demos and project now work under 64 bit versions of Windows (thanks to Ronny Hanson, Thomas Bleeker). The Benito Programmer project now has its own unique VID/PID pair allocated from the Atmel donated LUFA VID/PID pool.
* Added beginnings of a new AVRISP-MKII clone project.Dean Camera2009-08-171-1/+1
| | | | | | Added new Endpoint_SetEndpointDirection() macro to set the current endpoint direction for bidirectional endpoints. Renamed internal USB_INT_ENDPOINT_SETUP macro to USB_INT_RXSTPI to fit in with the rest of the interrupt vector macros.
* Added explicit attribute masks to the device mode demos' descriptors.Dean Camera2009-08-132-4/+4
|
* Fixed issue in USBtoSerial demos where the USART Rx line was not having its ↵Dean Camera2009-08-051-9/+9
| | | | | | | | pullup enabled at startup, leading to noise being received from the Rx pin when left floating. Removed unused relative Common.h header include from the DriverStubs board stub drivers. Fixed Benito programmer, use the correct LED functions where needed to ensure correct status display at all times.
* Renamed all library events to properly seperate out Device and Host mode ↵Dean Camera2009-08-057-18/+18
| | | | | | | | events. Changed the firing conditions for some events to ensure that events are fired by their own USB mode only. Remove VBUS events - not needed as the library takes care of VBUS detection and feedback on supported AVRs via the USB_Device_Connected and USB_Device_Disconnected events. Fixed incorrect Host state assignment in the incomplete BluetoothHost demo.
* Rename TOTAL_NUM_CONFIGURATIONS to FIXED_NUM_CONFIGURATIONS, to match the ↵Dean Camera2009-08-026-6/+6
| | | | existing FIXED_CONTROL_ENDPOINT_SIZE compile time option. Add FIXED_NUM_CONFIGURATIONS to the descriptors of each project using the option.
* Renamed USB_Device_SetHighSpeed() to USB_Device_SetFullSpeed() so that the ↵Dean Camera2009-07-311-1/+0
| | | | | | correct terminology is used (thanks to Brian Dickman). Fix USB_PLL_Off() call in the series 4, 6 and 7 microcontroller disconnect interrupt handler code, which wasn't guarded by a test of USB_Options to check if the user has specified manual PLL control (thanks to Brian Dickman).
* Change project makefiles so that the current target settings and not just ↵Dean Camera2009-07-283-57/+60
| | | | | | the board selection is printed during the build process. Fix warning in AudioOutput demos when AUDIO_OUT_STEREO output mode is selected.
* Better solution - change compile time token names to DEVICE_STATE_AS_GPIOR ↵Dean Camera2009-07-283-3/+3
| | | | and HOST_STATE_AS_GPIOR and allow the user to set them to the index of the GPIOR register within the device to use.
* Added HOST_STATE_AS_GPIOR1 and DEVICE_STATE_AS_GPIOR0 compile time options, ↵Dean Camera2009-07-283-0/+3
| | | | the latter of which is used in the bootloaders, to reduce code size.
* Added new Benito project, a simple modified USB-to-Serial bridge for the ↵Dean Camera2009-07-231-1/+1
| | | | programming of AVRs using the official Arduino bootloader.
* Ensure that the USB_DeviceState variable is properly set upon wakeup events, ↵Dean Camera2009-07-231-1/+1
| | | | | | | | to the Addressed or Configured state as needed. Add explicit support for the AT90USB646 to the Teensy bootloader now that PJRC have released the Teensy++ board. Ensure unfinished SideShow demo uses an unallocated PID value within the LUFA range.