aboutsummaryrefslogtreecommitdiffstats
path: root/Bootloaders/CDC/BootloaderCDC.h
Commit message (Collapse)AuthorAgeFilesLines
* Add platform includes to the bootloaders.Dean Camera2013-05-191-0/+1
|
* Minor documentation improvements.Dean Camera2013-05-011-1/+1
|
* Improve bootloader compile error message text when building without the ↵Dean Camera2013-04-081-1/+1
| | | | correct optimization level.
* Clean up bootloader project ASF integration code.Dean Camera2013-04-061-1/+1
|
* Add checks to the bootloaders so that they will give a user-friendly compile ↵Dean Camera2013-04-061-0/+5
| | | | error if not compiled with size optimizations.
* Update copyright year to 2013.Dean Camera2013-01-031-2/+2
|
* Minor cleanup of the CDC bootloader.Dean Camera2012-10-201-4/+5
|
* Minor documentation improvements.Dean Camera2012-10-051-1/+1
|
* Add human readable definitions for the AVR109 protocol commands in the CDC ↵Dean Camera2012-08-271-1/+43
| | | | class bootloader.
* Reduce bootloader magic key to 16 bits to save FLASH space.Dean Camera2012-07-071-1/+1
|
* AppConfigHeaders: Update bootloaders to use configuration header files, ↵Dean Camera2012-05-101-0/+1
| | | | rather than makefile defines.
* Add branch for the conversion of demos to use standard C header files for ↵Dean Camera2012-05-101-0/+5
| | | | configuration, rather than makefile defined macros.
* Update file contributor copyrights for 2012.Dean Camera2012-02-041-1/+1
|
* Update file header copyrights for 2012.Dean Camera2012-02-041-1/+1
|
* Minor bootloader tweaks; make some functions static where possible to reduce ↵Dean Camera2012-01-151-2/+2
| | | | the compiled binary size, add additional comments to the makefiles.
* Run wspurify script on /trunk/ and /branches/ C source files, to remove any ↵Dean Camera2011-12-231-1/+1
| | | | trailing whitespace at the end of each line.
* Added User Application APIs to the CDC and DFU class bootloaders.Dean Camera2011-10-111-0/+1
|
* Added LED flashing to the CDC and DFU class bootloaders to indicate when ↵Dean Camera2011-04-231-0/+1
| | | | they are running.
* Add static keyword to all project globals whose scope should be restricted ↵Dean Camera2011-02-101-40/+0
| | | | | | to the same module as they are declared in. Tighten up the HID class bootloader code slightly, document that it currently exceeds 2KB of bootloader space for all models other than the Series 2 USB AVRs.
* Update copyright year on all source files.Dean Camera2011-01-011-2/+2
|
* Added new NO_BLOCK_SUPPORT, NO_EEPROM_BYTE_SUPPORT, NO_FLASH_BYTE_SUPPORT ↵Dean Camera2010-10-291-0/+2
| | | | and NO_LOCK_BYTE_SUPPORT compile time options to the CDC class bootloader.
* 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.
* Clean up excessive whitespace at the end of each line using the wspurify ↵Dean Camera2010-10-131-11/+12
| | | | tool made by Laszlo Monda
* Added CDC functional descriptor structs to the Low Level CDC demos and CDC ↵Dean Camera2010-09-281-1/+41
| | | | | | class bootloader, to improve the readability of the descriptors. Fixed BootloaderCDC project failing on some operating systems due to removed Line Encoding options (thanks to Alexey Belyaev).
* Removed unused line encoding data and control requests from the CDC ↵Dean Camera2010-05-261-47/+1
| | | | Bootloader code, to save space.
* Add svn:eol-style property to source files, so that the line endings are ↵Dean Camera2010-05-081-130/+130
| | | | correctly converted to the target system's native end of line style.
* Make CDC class bootloader hard-reset the AVR when exited instead of a ↵Dean Camera2010-05-061-1/+0
| | | | | | soft-reset. Reduce size of the TeensyHID bootloader slightly. Fix the TeensyHID bootloader for the larger USB AVR devices, since Paul uses a different (undocumented) addressing scheme on these devices.
* USB_Init() no longer calls sei() to enable global interrupts - this must now ↵Dean Camera2010-04-281-0/+1
| | | | be done in the user application once all init code has run.
* Update copyright year to 2010.Dean Camera2009-12-301-2/+2
|
* Fix MIT license language to make its intent clearer.Dean Camera2009-12-281-7/+7
|
* Spell check all source code variables, comments and strings.Dean Camera2009-11-091-1/+1
|
* Fixed DFU and CDC class bootloaders on the AT90USBXXX2 series USB AVRs.Dean Camera2009-09-061-1/+0
|
* Renamed all library events to properly seperate out Device and Host mode ↵Dean Camera2009-08-051-3/+3
| | | | | | | | 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.
* Re-add signature byte defines to the DFU and CDC class bootloaders -- the ↵Dean Camera2009-06-211-6/+1
| | | | SIGNATURE_x defines in the AVR device header files only exist in a newer version of avr-libc than is in the Debian repositories, causing build issues on Linux.
* Updated bootloaders to use the new main() function layout and remove any ↵Dean Camera2009-06-091-3/+4
| | | | references to the scheduler to keep them in line with the rest of the library.
* Rewritten event system to remove all macros, to make user code clearer.Dean Camera2009-05-181-10/+4
| | | | | | | | Fixed incorrect ENDPOINT_EPNUM_MASK mask preventing endpoints above EP3 from being selected (thanks to Jonathan Oakley). Removed STREAM_CALLBACK() macro - callbacks now use regular function definitions to clarify user code. Removed DESCRIPTOR_COMPARATOR() macro - comparators should now use regular function definitions to clarify user code.
* Fixed Endpoint_Write_Control_* functions writing more data than expected by ↵Dean Camera2009-05-021-1/+1
| | | | the host, causing it to panic (thanks to Johannes Raschke).
* Added preprocessor checks and documentation to the bootloaders giving ↵Dean Camera2009-04-071-0/+5
| | | | information about missing SIGNATURE_x defines due to outdated avr-libc versions.
* Removed SetSystemClockPrescaler() macro, the clock_prescale_set() avr-libc ↵Dean Camera2009-03-091-0/+1
| | | | macro has been corrected in recent avr-libc versions
* Makefiles and library modified to add a new F_CLOCK constant to give the ↵Dean Camera2009-02-261-2/+2
| | | | | | unprescaled master input clock frequency, so that the correct PLL mask can be determined even when the CPU (F_CPU) clock rate is prescaled outside the normal input range of the PLL. Started to clean up the AVRISP Programmer project code, donated by Opendous Inc.
* Moved all source to the trunk directory.Dean Camera2009-02-231-0/+135