Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update copyrights for 2018. | Dean Camera | 2018-01-04 | 6 | -10/+10 |
| | |||||
* | Update copyrights for 2017. | Dean Camera | 2017-04-18 | 6 | -10/+10 |
| | |||||
* | Update copyrights to 2016. | Dean Camera | 2016-01-31 | 6 | -10/+10 |
| | |||||
* | Fixed incorrect comments in DataflashManager.c (thanks to Andrew Milkovich). | Dean Camera | 2015-09-27 | 1 | -2/+2 |
| | |||||
* | Update copyrights to 2015 (better late than never). | Dean Camera | 2015-05-17 | 6 | -10/+10 |
| | |||||
* | Obsolete the old MACROS and MACROE convenience macros. | Dean Camera | 2014-09-14 | 1 | -3/+3 |
| | |||||
* | Update copyrights for 2014. | Dean Camera | 2014-01-04 | 6 | -10/+10 |
| | |||||
* | Rename DS1307 driver files to a more generic RTC, as different RTC drivers ↵ | Dean Camera | 2013-07-20 | 2 | -1/+1 |
| | | | | may be added in the future. | ||||
* | Add volatile software RTC to the TempDataLogger application if the dummy RTC ↵ | Dean Camera | 2013-07-20 | 3 | -20/+101 |
| | | | | mode is enabled. | ||||
* | Minor documentation improvements. | Dean Camera | 2013-03-18 | 2 | -8/+8 |
| | |||||
* | Add dummy handler for SCSI_CMD_START_STOP_UNIT in all project SCSI handling ↵ | Dean Camera | 2013-03-09 | 1 | -0/+1 |
| | | | | routines, to prevent ejection errors on *nix systems due to an unknown SCSI command. | ||||
* | Update copyright year to 2013. | Dean Camera | 2013-01-03 | 6 | -10/+10 |
| | |||||
* | Minor documentation improvements. | Dean Camera | 2012-10-05 | 4 | -4/+4 |
| | |||||
* | Update FatFS library copies to the latest R0.09a version. | Dean Camera | 2012-09-01 | 6 | -364/+520 |
| | |||||
* | Spell-check latest trunk source code. | Dean Camera | 2012-08-18 | 2 | -17/+17 |
| | |||||
* | Spell check source code, fix mistakes. | Dean Camera | 2012-06-09 | 1 | -1/+1 |
| | |||||
* | AppConfigHeaders: Add missing AppConfig.h file includes. | Dean Camera | 2012-05-27 | 2 | -0/+2 |
| | |||||
* | AppConfigHeaders: Update several additional user projects to use ↵ | Dean Camera | 2012-05-10 | 1 | -0/+3 |
| | | | | configuration header files, rather than makefile defines. | ||||
* | Update StaticAnalysisTest to check for missing header files. Fix found ↵ | Dean Camera | 2012-02-29 | 1 | -2/+2 |
| | | | | incorrect header file paths in the demos and projects. | ||||
* | Fix warnings and errors found by the new cppcheck provided static code analysis. | Dean Camera | 2012-02-28 | 1 | -8/+4 |
| | |||||
* | Update file contributor copyrights for 2012. | Dean Camera | 2012-02-04 | 4 | -4/+4 |
| | |||||
* | Update file header copyrights for 2012. | Dean Camera | 2012-02-04 | 6 | -6/+6 |
| | |||||
* | Run wspurify script on /trunk/ and /branches/ C source files, to remove any ↵ | Dean Camera | 2011-12-23 | 5 | -12/+15 |
| | | | | trailing whitespace at the end of each line. | ||||
* | Fixed incorrect Dataflash buffer use in the ↵ | Dean Camera | 2011-07-30 | 1 | -1/+1 |
| | | | | DataflashManager_WriteBlocks_RAM() function of several demos/projects (thanks to Jeremy Willden). | ||||
* | Massive corrections to the project documentation and code comments, thanks ↵ | Dean Camera | 2011-06-05 | 1 | -2/+2 |
| | | | | to Russian translation services provided by Andrey from Microsin.ru. | ||||
* | Remove redundant type information for bitfield elements, other than the ↵ | Dean Camera | 2011-04-10 | 1 | -20/+20 |
| | | | | | | signed/unsignedness of the element. Change type of USB_SelectedPipe and USB_SelectedEndpoint for the AVR32 UC3 architecture to uint32_t to reduce the compiled code size. | ||||
* | Renamed all low level Endpoint_Read_*, Endpoint_Write_* and ↵ | Dean Camera | 2011-04-04 | 2 | -36/+36 |
| | | | | | | 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. | ||||
* | Use the MIN() macro where possible instead of manual "(x < y) ? x : y" ↵ | Dean Camera | 2011-03-23 | 1 | -3/+2 |
| | | | | constructs. | ||||
* | Add static keyword to all project globals whose scope should be restricted ↵ | Dean Camera | 2011-02-10 | 1 | -2/+2 |
| | | | | | | 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. | ||||
* | Oops - fix missing constants in the TempDataLogger FatFS diskio.h header file. | Dean Camera | 2011-02-06 | 1 | -0/+18 |
| | | | | Add const to all project descriptor definitions for safety. | ||||
* | Update projects using FatFS and PetiteFatFS to the latest library versions. | Dean Camera | 2011-02-06 | 6 | -832/+971 |
| | |||||
* | Added new high level TWI packet read/write commands, altered behaviour of ↵ | Dean Camera | 2011-01-13 | 2 | -45/+22 |
| | | | | | | the TWI_StartTransmission() function. Spell check source code files. | ||||
* | Oops - The DS1307 contains an unused "DayOfWeek" register that must be ↵ | Dean Camera | 2011-01-13 | 2 | -43/+52 |
| | | | | accounted for in the new unified DS1307 Time/Day read and write routines. | ||||
* | Changed TempDataLogger project's DS1307 driver to simplify the function ↵ | Dean Camera | 2011-01-13 | 3 | -107/+74 |
| | | | | interface and prevent a possible race condition. | ||||
* | Altered all endpoint/pipe stream transfers so that the new BytesProcessed ↵ | Dean Camera | 2011-01-10 | 1 | -10/+6 |
| | | | | | | | | | | parameter now points to a location where the number of bytes in the transfer that have been completed can be stored (or NULL if entire transaction should be performed in one chunk). Added new Endpoint_Null_Stream() and Pipe_Null_stream() functions. Removed the NO_STREAM_CALLBACKS compile time option due to the new partial stream transfer feature replacing it. Fixed errors in the incomplete Test and Measurement device demo preventing proper operation (thanks to Pavel Plotnikov). | ||||
* | Update copyright year on all source files. | Dean Camera | 2011-01-01 | 6 | -10/+10 |
| | |||||
* | Added basic driver example use code to the library documentation. | Dean Camera | 2010-12-26 | 1 | -2/+2 |
| | | | | Made the USARTStream global public and documented in the SerialStream module, allowing for the serial USART stream to be accessed via its handle rather than via the implicit stdout and stdin streams. | ||||
* | Added ability to write protect Mass Storage disk write operations from the ↵ | Dean Camera | 2010-11-26 | 2 | -1/+37 |
| | | | | host OS. | ||||
* | Changed over www.fourwalledcubicle.com links to the new www.lufa-lib.org ↵ | Dean Camera | 2010-10-28 | 6 | -6/+6 |
| | | | | redirect domain, including the new aliased links for LUFA-related pages such as the various download/source control mirrors and support lists. | ||||
* | All USB class drivers are now automatically included when LUFA/Drivers/USB.h ↵ | Dean Camera | 2010-10-24 | 2 | -2/+0 |
| | | | | | | is included, and no longer need to be seperately included. All LowLevel demos changed to use the constants and types defined in the USB class drivers. | ||||
* | Minor documentation corrections. | Dean Camera | 2010-10-13 | 1 | -2/+2 |
| | |||||
* | Clean up excessive whitespace at the end of each line using the wspurify ↵ | Dean Camera | 2010-10-13 | 13 | -118/+131 |
| | | | | tool made by Laszlo Monda | ||||
* | Clarify in the project documentation files what the each of the different ↵ | Dean Camera | 2010-08-31 | 1 | -3/+3 |
| | | | | USB AVR device "series" comprises of. | ||||
* | Fixed MassStorage based demos and projects resetting the SCSI sense values ↵ | Dean Camera | 2010-08-18 | 2 | -32/+68 |
| | | | | | | before the command is executed, leading to missed SCSI sense values when the host retrieves the sense key (thanks to Martin Degelsegger). Added missing DataflashManager_CheckDataflashOperation() function to the MassStorageKeyboard demo, removed redundant SCSI_Codes.h file as these values are part of the MassStorage Class Driver. | ||||
* | Oops - fix mixed "initialize" and "initialise" - opt for American spelling ↵ | Dean Camera | 2010-07-30 | 1 | -1/+1 |
| | | | | due to its wide use in technical standards. | ||||
* | More spell checking of all source files -- correct missed errors, switch to ↵ | Dean Camera | 2010-07-30 | 2 | -11/+11 |
| | | | | EN-GB spelling dictionary. | ||||
* | Spell check more of the third party libraries used by LUFA. | Dean Camera | 2010-07-30 | 3 | -12/+12 |
| | |||||
* | Spell check all source files once again to find any typos. | Dean Camera | 2010-07-29 | 7 | -86/+86 |
| | |||||
* | Rename reserved members of all structs so that they are uniformly named ↵ | Dean Camera | 2010-07-26 | 1 | -4/+4 |
| | | | | | | across all demos/projects/bootloaders. Added start of the Incomplete TMC demo's command parser code. | ||||
* | Update all demos, projects and bootloaders to indent all function ↵ | Dean Camera | 2010-07-21 | 6 | -19/+48 |
| | | | | | | parameters, one per line, for better readability. Add missing const qualifiers to the demos. |