Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update copyright year on all source files. | Dean Camera | 2011-01-01 | 6 | -12/+12 |
| | |||||
* | Added ability to write protect Mass Storage disk write operations from the ↵ | Dean Camera | 2010-11-26 | 3 | -5/+44 |
| | | | | 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. | ||||
* | Fix incomplete StandaloneProgrammer project code not compiling due to the ↵ | Dean Camera | 2010-10-13 | 1 | -1/+1 |
| | | | | recent API changes in the LUFA core. | ||||
* | 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 | 11 | -113/+123 |
| | | | | 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/+69 |
| | | | | | | 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. | ||||
* | Spell check more of the third party libraries used by LUFA. | Dean Camera | 2010-07-30 | 1 | -1/+1 |
| | |||||
* | Spell check all source files once again to find any typos. | Dean Camera | 2010-07-29 | 4 | -73/+73 |
| | |||||
* | Update all demos, projects and bootloaders to indent all function ↵ | Dean Camera | 2010-07-21 | 4 | -10/+24 |
| | | | | | | parameters, one per line, for better readability. Add missing const qualifiers to the demos. | ||||
* | Add missing const qualifiers to class drivers. | Dean Camera | 2010-07-21 | 1 | -1/+1 |
| | | | | Indent core library function parameters so that there is only one parameter per line, to increase readability. | ||||
* | Update makefiles to use the latest WinAVR/Atmel toolchain makefile template. | Dean Camera | 2010-07-19 | 1 | -8/+2 |
| | | | | Add new module source variables to the library core makefile, so that module sources can be added to a project's makefile on a per-module rather than per-file basis. | ||||
* | Disable strict aliasing explicitly in the project makefiles, as this is ↵ | Dean Camera | 2010-07-15 | 1 | -2/+2 |
| | | | | apparently enabled by default in newer AVR-GCC builds, and aliasing is used heavily for type-punning through the LUFA and third party library's codebase. | ||||
* | Fix pointer aliasing warning in the Mass Storage demos. | Dean Camera | 2010-07-15 | 1 | -3/+2 |
| | |||||
* | Rewrote the implementation of the SwapEndian_16() and SwapEndian_32() ↵ | Dean Camera | 2010-07-09 | 1 | -3/+3 |
| | | | | | | functions so that they compile down in most instances to minimal loads and stores rather than complicated shifts. Fixed SCSI.c implementations of all the demos/projects casting the block count to a 32-bit temporary before calling SwapEndian_16(). | ||||
* | More documentation fixes. | Dean Camera | 2010-06-03 | 1 | -2/+2 |
| | |||||
* | Add svn:eol-style property to source files, so that the line endings are ↵ | Dean Camera | 2010-05-08 | 12 | -2280/+2280 |
| | | | | correctly converted to the target system's native end of line style. | ||||
* | Add const keyword to the demo function parameters where possible. | Dean Camera | 2010-04-18 | 4 | -15/+15 |
| | |||||
* | Webserver project now uses the board LEDs to indicate the current IP ↵ | Dean Camera | 2010-03-09 | 1 | -2/+0 |
| | | | | | | configuration state. Don't double-read data from the attached disk in the incomplete StandaloneProgrammer project when in host mode. | ||||
* | Minor fixups to the documentation and preprocessor tokens. | Dean Camera | 2010-02-02 | 1 | -2/+2 |
| | |||||
* | Update copyright year to 2010. | Dean Camera | 2009-12-30 | 11 | -21/+21 |
| | |||||
* | Add new TemperatureDataLogger project, a simple USB Mass Storage class ↵ | Dean Camera | 2009-12-30 | 2 | -2/+2 |
| | | | | Temperature Data Logger using the onboard Dataflash and Temperature sensor. | ||||
* | Fix MIT license language to make its intent clearer. | Dean Camera | 2009-12-28 | 6 | -42/+42 |
| | |||||
* | Added new XPLAIN serial Bridge project (thanks to John Steggall for the ↵ | Dean Camera | 2009-11-25 | 1 | -1/+1 |
| | | | | software UART code). | ||||
* | Make the StandaloneProgrammer project seamlessly read out drive contents ↵ | Dean Camera | 2009-11-24 | 1 | -1/+1 |
| | | | | from either an attached FAT formatted drive when in host mode, or the onboard FAT formatted dataflash when in device mode. | ||||
* | Fixed misnamed SI_Host_USBTask() and SI_Host_ConfigurePipes() functions. | Dean Camera | 2009-11-23 | 1 | -5/+1 |
| | |||||
* | The incomplete StandaloneProgrammer project now uses Host and Device Mass ↵ | Dean Camera | 2009-11-23 | 6 | -98/+61 |
| | | | | | | | | | | | | storage classes, so that program data can either be loaded onto the device's Dataflash storage, or read off an attached USB memory stick. The USB target family and allowable USB mode tokens are now public and documented (USB_CAN_BE_*, USB_SERIES_*_AVR). The SCSI_Request_Sense_Response_t and SCSI_Inquiry_Response_t type defines are now part of the Mass Storage Class driver common defines, rather than being defined in the Host mode Class driver section only. The USB_MODE_HOST token is now defined even when host mode is not available. Added missing CDC_Host_CreateBlockingStream() function code to the CDC Host Class driver. | ||||
* | Make RNDISHost demo validate the set Packet Filter to ensure that it is ↵ | Dean Camera | 2009-11-17 | 12 | -0/+2323 |
being sent correctly. Add new (incomplete) StandaloneProgrammer project, using the ELM Petite FAT library to read files stored on the board's dataflash by the host. |