aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/LowLevel/MassStorage/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Update copyrights for 2018.Dean Camera2018-01-044-8/+8
|
* Update copyrights for 2017.Dean Camera2017-04-184-8/+8
|
* Update copyrights to 2016.Dean Camera2016-01-314-8/+8
|
* Fixed incorrect comments in DataflashManager.c (thanks to Andrew Milkovich).Dean Camera2015-09-271-2/+2
|
* Update copyrights to 2015 (better late than never).Dean Camera2015-05-174-8/+8
|
* Obsolete the old MACROS and MACROE convenience macros.Dean Camera2014-09-141-3/+3
|
* Update copyrights for 2014.Dean Camera2014-01-044-9/+9
|
* Minor documentation improvements.Dean Camera2013-03-182-8/+8
|
* Add dummy handler for SCSI_CMD_START_STOP_UNIT in all project SCSI handling ↵Dean Camera2013-03-091-0/+1
| | | | routines, to prevent ejection errors on *nix systems due to an unknown SCSI command.
* Update copyright year to 2013.Dean Camera2013-01-034-8/+8
|
* Minor documentation improvements.Dean Camera2012-10-054-4/+4
|
* AppConfigHeaders: Move out the last of the demo/app configurations into new ↵Dean Camera2012-05-131-6/+1
| | | | AppConfig.h header files.
* Update StaticAnalysisTest to check for missing header files. Fix found ↵Dean Camera2012-02-292-4/+4
| | | | incorrect header file paths in the demos and projects.
* Update file contributor copyrights for 2012.Dean Camera2012-02-044-4/+4
|
* Update file header copyrights for 2012.Dean Camera2012-02-044-4/+4
|
* Run wspurify script on /trunk/ and /branches/ C source files, to remove any ↵Dean Camera2011-12-231-2/+3
| | | | trailing whitespace at the end of each line.
* Fixed incorrect Dataflash buffer use in the ↵Dean Camera2011-07-301-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 Camera2011-06-051-2/+2
| | | | to Russian translation services provided by Andrey from Microsin.ru.
* Remove redundant type information for bitfield elements, other than the ↵Dean Camera2011-04-101-46/+46
| | | | | | 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 Camera2011-04-042-38/+38
| | | | | | 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 Camera2011-03-231-3/+2
| | | | constructs.
* Add static keyword to all project globals whose scope should be restricted ↵Dean Camera2011-02-101-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.
* Altered all endpoint/pipe stream transfers so that the new BytesProcessed ↵Dean Camera2011-01-101-8/+4
| | | | | | | | | | 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 Camera2011-01-014-8/+8
|
* Added ability to write protect Mass Storage disk write operations from the ↵Dean Camera2010-11-262-2/+39
| | | | host OS.
* Changed over www.fourwalledcubicle.com links to the new www.lufa-lib.org ↵Dean Camera2010-10-284-4/+4
| | | | 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 Camera2010-10-242-90/+2
| | | | | | 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 Camera2010-10-131-2/+2
|
* Clean up excessive whitespace at the end of each line using the wspurify ↵Dean Camera2010-10-135-111/+116
| | | | tool made by Laszlo Monda
* Clarify in the project documentation files what the each of the different ↵Dean Camera2010-08-311-3/+3
| | | | USB AVR device "series" comprises of.
* Added new SCSI_ASENSE_NOT_READY_TO_READY_CHANGE constant to the Mass Storage ↵Dean Camera2010-08-201-2/+3
| | | | class driver, to indicate when a previously not ready removable medium has now become ready for the host's use (thanks to Martin Degelsegger)
* Fixed MassStorage based demos and projects resetting the SCSI sense values ↵Dean Camera2010-08-182-29/+57
| | | | | | 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 all source files once again to find any typos.Dean Camera2010-07-293-63/+63
|
* Rename reserved members of all structs so that they are uniformly named ↵Dean Camera2010-07-261-5/+5
| | | | | | 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 Camera2010-07-212-8/+18
| | | | | | parameters, one per line, for better readability. Add missing const qualifiers to the demos.
* Update makefiles to use the latest WinAVR/Atmel toolchain makefile template.Dean Camera2010-07-191-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 Camera2010-07-151-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 Camera2010-07-152-3/+10
|
* Rewrote the implementation of the SwapEndian_16() and SwapEndian_32() ↵Dean Camera2010-07-091-12/+8
| | | | | | 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 Camera2010-06-031-2/+2
|
* Add svn:eol-style property to source files, so that the line endings are ↵Dean Camera2010-05-085-1128/+1128
| | | | correctly converted to the target system's native end of line style.
* Added keyboard modifier masks (HID_KEYBOARD_MODIFER_*) to the HID class ↵Dean Camera2010-02-071-13/+13
| | | | driver and Keyboard demos.
* Minor fixups to the documentation and preprocessor tokens.Dean Camera2010-02-021-2/+2
|
* Update copyright year to 2010.Dean Camera2009-12-305-10/+10
|
* Fix MIT license language to make its intent clearer.Dean Camera2009-12-285-35/+35
|
* Increase timeout of Mass Storage and Still Image host commands to 10 seconds ↵Dean Camera2009-12-092-13/+13
| | | | | | | | (up from 5) to account for slow-processing devices. Added brace guards to macros with parameters to prevent unintended changed evaluation of the macro expression. Minor code cleanups (remove redundant comments, fix spacing, etc.).
* Spell check all source code variables, comments and strings.Dean Camera2009-11-091-1/+1
|
* Moved USBtoSerial demo the Projects directory, as it is simply an expanded ↵Dean Camera2009-10-181-2/+0
| | | | CDC demo. Added const qualifier to Endpoint/Pipe stream write routines.
* Cleanups to the Device mode Mass Storage demo applications' SCSI routines.Dean Camera2009-10-022-60/+30
|
* Add new error condition to the HID Report Parser for when a report is parsed ↵Dean Camera2009-09-221-2/+4
| | | | but no unfiltered items are encountered (i.e. nothing of interest in the device report). Make all host HID "WithParser" demos print the new error condition.