aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/ClassDriver/MassStorage/Lib
Commit message (Collapse)AuthorAgeFilesLines
* 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: Make sure that in applications using an AppConfig.h ↵Dean Camera2012-05-152-2/+4
| | | | configuration file, all application headers include the configuration file.
* AppConfigHeaders: Move out the last of the demo/app configurations into new ↵Dean Camera2012-05-131-0/+3
| | | | 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.
* Renamed all low level Endpoint_Read_*, Endpoint_Write_* and ↵Dean Camera2011-04-042-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 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-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 Camera2011-01-014-8/+8
|
* Added ability to write protect Mass Storage disk write operations from the ↵Dean Camera2010-11-262-1/+37
| | | | 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-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 Camera2010-10-131-2/+2
|
* Clean up excessive whitespace at the end of each line using the wspurify ↵Dean Camera2010-10-134-94/+98
| | | | 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.
* Fixed MassStorage based demos and projects resetting the SCSI sense values ↵Dean Camera2010-08-182-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.
* Spell check all source files once again to find any typos.Dean Camera2010-07-293-63/+63
|
* Update all demos, projects and bootloaders to indent all function ↵Dean Camera2010-07-214-10/+24
| | | | | | parameters, one per line, for better readability. Add missing const qualifiers to the demos.
* Add missing const qualifiers to class drivers.Dean Camera2010-07-214-16/+16
| | | | 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 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-151-3/+2
|
* Rewrote the implementation of the SwapEndian_16() and SwapEndian_32() ↵Dean Camera2010-07-091-2/+2
| | | | | | 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-084-978/+978
| | | | correctly converted to the target system's native end of line style.
* Minor fixups to the documentation and preprocessor tokens.Dean Camera2010-02-021-2/+2
|
* Update copyright year to 2010.Dean Camera2009-12-304-8/+8
|
* Fix MIT license language to make its intent clearer.Dean Camera2009-12-284-28/+28
|
* Increase timeout of Mass Storage and Still Image host commands to 10 seconds ↵Dean Camera2009-12-092-7/+7
| | | | | | | | (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.).
* The incomplete StandaloneProgrammer project now uses Host and Device Mass ↵Dean Camera2009-11-231-61/+0
| | | | | | | | | | | | 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 Camera2009-11-171-3/+4
| | | | | | 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.
* Cleanups to the MassStorage Device demos, and the MassStorage Device Class ↵Dean Camera2009-11-151-12/+4
| | | | driver.
* Add new MIDI Host Class driver to the library, and new MIDIHost ClassDriver ↵Dean Camera2009-10-081-2/+2
| | | | | | demo. Make MouseHost and KeyboardHost ClassDriver demos use the HID Class driver's structures for the boot protocol Mouse/Keyboard report data, rather than rolling their own.
* Cleanups to the Device mode Mass Storage demo applications' SCSI routines.Dean Camera2009-10-022-52/+28
|
* 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.
* Move Dataflash operational checking code out from SCSI.c into the ↵Dean Camera2009-09-223-29/+36
| | | | DataflashManager.c in the Device mode Mass Storage demos.
* Add SCSICodes.h to the Class Driver Common folder, and automatically include ↵Dean Camera2009-08-262-86/+0
| | | | it in both the Host and Device Mass Storage Class drivers. Delete existing version from the ClassDriver MassStorage device demo's /Lib/ folder.
* Changed over manual loops waiting for endpoints to be ready to use the ↵Dean Camera2009-08-051-20/+8
| | | | library Endpoint_WaitUntilReady() function for robustness. Fixes issues with terminated transfers on the host locking up USB devices.
* Added new USB_DeviceState variable to keep track of the current Device mode ↵Dean Camera2009-07-211-4/+20
| | | | | | | | | | | | USB state. 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.
* Change Doxygen configuration files to not produce 4096 directories for the ↵Dean Camera2009-07-201-0/+2
| | | | | | documentation files -- the LUFA components do not generate enough documentation files to justify the large performance hit of creating so many directories. Fix missing Doxygen documentation in the Class Driver Mass Storage Device demo.
* Added incomplete PrinterHost demo application.Dean Camera2009-07-111-3/+3
| | | | | | Seperated out Lib components of the incomplete BluetoothHost demo application out into a seperate Lib subfolder. Changed F_CLOCK entries in project makefiles to alias to F_CPU by default, as this is the most common case.
* Minor correction to MagStripe demo to fix build problems.Dean Camera2009-06-291-9/+15
|