aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Class/Common/StillImage.h
Commit message (Collapse)AuthorAgeFilesLines
* Added Class, ClassDevice, ClassHost and ClassCommon to the internal class ↵Dean Camera2011-11-181-161/+0
| | | | driver source filenames to prevent ambiguities.
* More endianness porting of the LUFA device mode class drivers.Dean Camera2011-07-111-0/+2
| | | | | | Add endianness information to the class driver and core structure definitions. Move out the unused Ethernet_Frame_Info_t structure definition to the RNDIS device demos where it is needed.
* Add structure padding to the appropriate descriptor structures to maintain ↵Dean Camera2011-03-111-1/+1
| | | | | | correct alignments on larger architectures. Fix EVK1101 swapped joystick Right/Down masks.
* Start update of documentation to support possible multiple architectures in ↵Dean Camera2011-02-201-2/+0
| | | | the future - alter \file documentation to automatically copy in the module documentation where possible.
* Initial restructuring of the core USB driver module to support multiple ↵Dean Camera2011-02-191-1/+1
| | | | architectures in the future.
* Add new ARCH option to the makefiles to (eventually) specify the target ↵Dean Camera2011-02-191-1/+1
| | | | device architecture. Update non-usb peripheral drivers to reflect future multiple architecture support.
* Minor documentation improvements.Dean Camera2011-01-081-1/+1
|
* Update copyright year on all source files.Dean Camera2011-01-011-2/+2
|
* Documentation improvements - put driver example code into its own section, ↵Dean Camera2010-12-261-1/+1
| | | | fix incorrect and missing section names.
* Changed over www.fourwalledcubicle.com links to the new www.lufa-lib.org ↵Dean Camera2010-10-281-1/+1
| | | | redirect domain, including the new aliased links for LUFA-related pages such as the various download/source control mirrors and support lists.
* Add descriptor class, subclass and protocol constants to the class drivers, ↵Dean Camera2010-10-251-0/+16
| | | | | | | | modify all demos to use them where possible. Move out private/internal host class driver constants to the common class driver headers, so that they can be used in the Low Level host mode demos. Ensure all demos, projects and bootloaders use the class driver constants where possible to minimise code repetition.
* All USB class drivers are now automatically included when LUFA/Drivers/USB.h ↵Dean Camera2010-10-241-21/+21
| | | | | | 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.
* Clean up excessive whitespace at the end of each line using the wspurify ↵Dean Camera2010-10-131-14/+15
| | | | tool made by Laszlo Monda
* Move out many of the common class driver constants into grouped enums, to ↵Dean Camera2010-09-281-24/+22
| | | | | | | | make them more managable. Add new CDC descriptor structs to the CDC class driver, so that the CDC demos can use human readable field names. Rename prefix for Still Image Host class driver functions from "SImage_" to "SI_" to remain consistent with the rest of the driver.
* Renamed SERIAL_STREAM_ASSERT() macro to STDOUT_ASSERT().Dean Camera2010-06-171-26/+26
| | | | Minor tweaks to the library documentation.
* Add svn:eol-style property to source files, so that the line endings are ↵Dean Camera2010-05-081-146/+146
| | | | correctly converted to the target system's native end of line style.
* Add briefs for the library core structures.Dean Camera2010-03-291-1/+5
|
* Add file-level brief documentation.Dean Camera2010-03-291-0/+7
| | | | Remove accidentally duplicated model-specific peripheral driver files.
* All Class Driver Host mode demos now correctly set the board LEDs to READY ↵Dean Camera2010-03-251-6/+6
| | | | | | once the enumeration process has completed. Fixed Still Image Host class driver not resetting the transaction ID when a new session is opened, fixed driver not sending a valid session ID to the device.
* Add more include protection macros to give the user warnings when they try ↵Dean Camera2010-02-111-0/+5
| | | | to manually include private driver header files, instead of the public driver headers.
* Update copyright year to 2010.Dean Camera2009-12-301-2/+2
|
* Fix MIT license language to make its intent clearer.Dean Camera2009-12-281-7/+7
|
* Finish Still Image Host class driver.Dean Camera2009-09-091-1/+1
|
* Add StillImage Host Class Driver functions for opening and closing sessions. ↵Dean Camera2009-09-021-1/+1
| | | | | | Ensure IsActive is set on the interface to allow device functions to run. Fix spelling of "Received" in all source files where it is misspelt "Recieved".
* Added documentation for the constants and enums of the new StillImage Host ↵Dean Camera2009-09-011-27/+33
| | | | Class driver added to the library so far.
* Fixed StillImageHost not correctly freezing and unfreezing data pipes while ↵Dean Camera2009-09-011-4/+12
| | | | | | waiting for a response block header. Added basic PIMA commands to the StillImage Host Class driver - need to extend to PIMA specific command functions.
* Added start of the Still Image Host Class driver demo and driver code.Dean Camera2009-08-301-0/+43
| | | | Re-enabled building of the Host mode demos ClassDriver directory.
* Added new "Common" section to the class drivers, to hold all ↵Dean Camera2009-08-271-0/+6
| | | | | | mode-independant definitions for clarity. Moved SCSI command/sense constants into the Mass Storage Class driver, instead of the user-code.
* Remove ConfigDescriptor.c/.h files from the ClassDriver Host demos, as they ↵Dean Camera2009-06-151-0/+67
will be obsoleted when the Host mode class drivers are complete. Add new StillImage stub class driver common header.