aboutsummaryrefslogtreecommitdiffstats
path: root/Bootloaders
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed USB_RemoteWakeupEnabled flag never being set (the REMOTE WAKEUP Set ↵Dean Camera2009-04-232-3/+3
| | | | | | Feature request was not being handled). Renamed the FEATURELESS_CONTROL_ONLY_DEVICE compile-time token to CONTROL_ONLY_DEVICE.
* Applied STATIC_ENDPOINT_CONFIGURATION and FIXED_CONTROL_SIZE tokens to all ↵Dean Camera2009-04-221-1/+1
| | | | Device mode demos to reduce binary size.
* USB_HostRequest renamed to USB_ControlRequest, entire control request header ↵Dean Camera2009-04-223-16/+8
| | | | | | | | is now read into USB_ControlRequest in Device mode rather than having the library pass only partially read header data to the application. The USB_UnhandledControlPacket event has had its parameters removed, in favour of accessing the new USB_ControlRequest structure. The Endpoint control stream functions now correctly send a ZLP to the host when less data than requested is sent.
* Removed specialized Endpoint_ClearControl* and Pipe_ClearControl* macros in ↵Dean Camera2009-04-213-33/+33
| | | | favour of the standard Endpoint_Clear* and Pipe_Clear* macros (Atmel have confirmed no effect from setting FIFOCON on control endpoints).
* Changed over all deprecated GCC structure tag initializers to the ↵Dean Camera2009-04-205-176/+176
| | | | standardized C99 format (thanks to Mike Alexander).
* Spell checked non-source documentation pages.Dean Camera2009-04-192-7/+7
|
* More documentation changes for better module-level documentation rather than ↵Dean Camera2009-04-173-12/+27
| | | | file-level documentation.
* Fixed GenericHIDHost demo report write routine incorrect for control type ↵Dean Camera2009-04-163-66/+66
| | | | | | | | | | | | | | | | | | requests (thanks to Andrei Krainev). Removed Endpoint_ClearCurrentBank() and Pipe_ClearCurrentBank() in favour of new Endpoint_ClearIN(), Endpoint_ClearOUT(), Endpoint_ClearControlIN(), Endpoint_ClearControlOUT(), Pipe_ClearIN(), Pipe_ClearOUT(), Pipe_ClearControlIN() and Pipe_ClearControlOUT() macros (done to allow for the detection of packets of zero length). Renamed *_ReadWriteAllowed() macros to *_IsReadWriteAllowed() to remain consistent with the rest of the LUFA API. Endpoint_IsSetupReceived() macro has been renamed to Endpoint_IsSETUPReceived(), Endpoint_ClearSetupReceived() macro has been renamed to Endpoint_ClearControlSETUP(), the Pipe_IsSetupSent() macro has been renamed to Pipe_IsSETUPSent() and the Pipe_ClearSetupSent() macro is no longer applicable and should be removed - changes made to compliment the new endpoint and pipe bank management API. Updated all demos, bootloaders and projects to use the new endpoint and pipe management APIs (thanks to Roman Thiel). Updated library doxygen documentation, added groups, changed documentation macro functions to real functions for clarity. Removed old endpoint and pipe aliased read/write/discard routines which did not have an explicit endian specifier for clarity. Removed the ButtLoadTag.h header file, as no one used for its intended purpose anyway.
* Added preprocessor checks and documentation to the bootloaders giving ↵Dean Camera2009-04-074-4/+28
| | | | information about missing SIGNATURE_x defines due to outdated avr-libc versions.
* All comments in the library, bootloaders, demos and projects have now been ↵Dean Camera2009-04-017-11/+11
| | | | spell-checked and spelling mistakes/typos corrected.
* Fixed CDC demo not sending an empty packet after each transfer to prevent ↵Dean Camera2009-03-233-33/+48
| | | | | | the host from buffering incomming data. Altered Project and Bootloader makefiles so that the path to the LUFA library can be set in one place.
* Combined Mouse, MouseViaInt and MouseFullInt demos into a single unified demo.Dean Camera2009-03-194-43/+104
| | | | | | Corrections to Keyboard demo. Removed AVRISP_Programmer project due to code quality concerns.
* Corrected CDC class bootloader to fix a few bugs, changed address counter to ↵Dean Camera2009-03-173-106/+111
| | | | store x2 addresses for convenience.
* Fixed broken Magstripe project and TeensyHID bootloader.Dean Camera2009-03-171-2/+2
|
* Added extra output to makefiles to indicate the currently selected BOARD ↵Dean Camera2009-03-163-32/+50
| | | | parameter.
* Renamed NO_CLEARSET_FEATURE_REQUEST compile time token to ↵Dean Camera2009-03-112-2/+2
| | | | NO_FEATURELESS_CONTROL_ONLY_DEVICE and expanded its function to also remove parts of the Get Status chapter 9 request, to further reduce code usage.
* Fixed incorrect/missing control status stage transfers on demos, bootloaders ↵Dean Camera2009-03-103-8/+16
| | | | and applications (thanks to Nate Lawson).
* Removed SetSystemClockPrescaler() macro, the clock_prescale_set() avr-libc ↵Dean Camera2009-03-096-6/+9
| | | | macro has been corrected in recent avr-libc versions
* Altered DFU bootloader to use the signature byte constants located in the ↵Dean Camera2009-03-093-37/+2
| | | | avr-libc part headers, rather than redefining them in Descriptors.h.
* Updated makefiles to reflect new dfu-ee programming target invocations ↵Dean Camera2009-03-043-97/+2
| | | | | | | | | | (supplied by Opendous, Inc.). Renamed the ATTR_ALWAYSINLINE function attribute macro to ATTR_ALWAYS_INLINE to match the style of the other function attribute macro names. Added ATTR_ALWAYS_INLINE attribute to several inlined library functions, to ensure they are inlined in all circumstances. Cleanups to Endpoint.h and Pipe.h. Added better documentation for the endpoint and pipe interrupts.
* Makefiles and library modified to add a new F_CLOCK constant to give the ↵Dean Camera2009-02-265-15/+63
| | | | | | 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-2325-0/+9633