- 10 May, 2012 1 commit
-
-
Dean Camera authored
Add branch for the conversion of demos to use standard C header files for configuration, rather than makefile defined macros.
-
- 04 Feb, 2012 2 commits
-
-
Dean Camera authored
-
Dean Camera authored
-
- 29 Jan, 2012 1 commit
-
-
Dean Camera authored
Fixed DFU class bootloader not resetting the LED pins as high impedance inputs when a software jump to the user applications is requested.
-
- 15 Jan, 2012 1 commit
-
-
Dean Camera authored
Minor bootloader tweaks; make some functions static where possible to reduce the compiled binary size, add additional comments to the makefiles.
-
- 23 Dec, 2011 1 commit
-
-
Dean Camera authored
Run wspurify script on /trunk/ and /branches/ C source files, to remove any trailing whitespace at the end of each line.
-
- 23 Nov, 2011 1 commit
-
-
Dean Camera authored
Use the proper "-Wl,--undefined=BootloaderAPI_JumpTable" linker command line parameter in the bootloaders to ensure that the API jump tables are not discarded, rather than the previous C volatile pointer hack (thanks to Opendous Inc.).
-
- 11 Oct, 2011 1 commit
-
-
Dean Camera authored
-
- 05 Jun, 2011 1 commit
-
-
Dean Camera authored
Massive corrections to the project documentation and code comments, thanks to Russian translation services provided by Andrey from Microsin.ru.
-
- 23 Apr, 2011 2 commits
-
-
Dean Camera authored
Make DFU and CDC class bootloaders also toggle the LEDs on command activity in addition to the periodic flashing.
-
Dean Camera authored
-
- 08 Apr, 2011 1 commit
-
-
Dean Camera authored
Replace all calls and references to _delay_ms() in the code with the architecture-agnostic Delay_MS() function. Improve code generation for the Delay_MS() function on the AVR8 architecture when called with a constant input.
-
- 04 Apr, 2011 1 commit
-
-
Dean Camera authored
Renamed all low level Endpoint_Read_*, Endpoint_Write_* and Endpoint_Discard_* functions to use the number of bits instead of a symbolic size (Byte, Word, DWord) so that the function names are applicable and correct across all architectures. Renamed all low level Pipe_Read_*, Pipe_Write_* and Pipe_Discard_* functions to use the number of bits instead of a symbolic size (Byte, Word, DWord) so that the function names are applicable and correct across all architectures.
-
- 10 Feb, 2011 1 commit
-
-
Dean Camera authored
Add static keyword to all project globals whose scope should be restricted 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.
-
- 09 Feb, 2011 1 commit
-
-
Dean Camera authored
Change bootloader makefiles to automatically compute the bootloader starting address from a flash size and bootloader section size, expressed in KB.
-
- 30 Jan, 2011 1 commit
-
-
Dean Camera authored
-
- 01 Jan, 2011 1 commit
-
-
Dean Camera authored
-
- 27 Nov, 2010 1 commit
-
-
Dean Camera authored
-
- 05 Nov, 2010 1 commit
-
-
Dean Camera authored
Renamed the EVENT_USB_Device_UnhandledControlRequest() event to EVENT_USB_Device_ControlRequest() as it is now fired before the library request handlers, not afterwards.
-
- 28 Oct, 2010 1 commit
-
-
Dean Camera authored
Changed over www.fourwalledcubicle.com links to the new www.lufa-lib.org redirect domain, including the new aliased links for LUFA-related pages such as the various download/source control mirrors and support lists.
-
- 13 Oct, 2010 1 commit
-
-
Dean Camera authored
-
- 12 Sep, 2010 1 commit
-
-
Dean Camera authored
-
- 05 Aug, 2010 1 commit
-
-
Dean Camera authored
Fixed software application start command broken in the DFU class bootloader when dfu-programmer is used due to application start address corruption.
-
- 30 Jul, 2010 2 commits
-
-
Dean Camera authored
Oops - fix mixed "initialize" and "initialise" - opt for American spelling due to its wide use in technical standards.
-
Dean Camera authored
More spell checking of all source files -- correct missed errors, switch to EN-GB spelling dictionary.
-
- 08 May, 2010 1 commit
-
-
Dean Camera authored
Add svn:eol-style property to source files, so that the line endings are correctly converted to the target system's native end of line style.
-
- 28 Apr, 2010 1 commit
-
-
Dean Camera authored
USB_Init() no longer calls sei() to enable global interrupts - this must now be done in the user application once all init code has run.
-
- 24 Jan, 2010 1 commit
-
-
Dean Camera authored
Fixed DFU bootloader programming not discarding the correct number of filler bytes from the host when non-aligned programming ranges are specified (thanks to Thomas Bleeker).
-
- 30 Dec, 2009 1 commit
-
-
Dean Camera authored
-
- 28 Dec, 2009 1 commit
-
-
Dean Camera authored
-
- 29 Nov, 2009 1 commit
-
-
Dean Camera authored
Add to the existing CDC Class Driver's CreateStream() function documentation to explicitly state that the created streams are bidirectional.
-
- 07 Sep, 2009 1 commit
-
-
Dean Camera authored
Corrected incorrect signature bytes for the AT90USB82 and added support for 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.
-
- 06 Sep, 2009 1 commit
-
-
Dean Camera authored
-
- 05 Aug, 2009 1 commit
-
-
Dean Camera authored
Renamed all library events to properly seperate out Device and Host mode 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.
-
- 21 Jul, 2009 1 commit
-
-
Dean Camera authored
Added new Endpoint_ClearStatusStage() convenience function to assist with the status stages of control transfers. Removed vague USB_IsConnected global - test USB_DeviceState or USB_HostState explicitly to gain previous functionality. Removed USB_IsSuspended global - test USB_DeviceState against DEVICE_STATE_Suspended instead. Fixed possible enumeration errors from spinloops which may fail to exit if the USB connection is severed before the exit condition becomes true.
-
- 28 Jun, 2009 1 commit
-
-
Dean Camera authored
Added parameter directions to function parameter documentation. Added new experimental FAST_STREAM_FUNCTIONS compile time option to speed up stream transfers at the expense of a higher FLASH consumption (needs testing to verify improved throughput).
-
- 26 Jun, 2009 1 commit
-
-
Dean Camera authored
Remove all Host mode class demos other than the CDCHost class driver demo, so that they can be re-added as they are made once the host mode class framework is designed. Fixed USB_Host_SendControlRequest() not re-suspending the USB bus when initial device ready-wait fails. Fixed USB Pad regulator not being disabled on some AVR models when the USB_OPT_REG_DISABLED option is used.
-
- 21 Jun, 2009 1 commit
-
-
Dean Camera authored
Re-add signature byte defines to the DFU and CDC class bootloaders -- the 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.
-
- 09 Jun, 2009 1 commit
-
-
Dean Camera authored
Updated bootloaders to use the new main() function layout and remove any references to the scheduler to keep them in line with the rest of the library.
-
- 08 Jun, 2009 1 commit
-
-
Dean Camera authored
-