aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Class/Common
Commit message (Collapse)AuthorAgeFilesLines
...
* Oops - fix mixed "initialize" and "initialise" - opt for American spelling ↵Dean Camera2010-07-301-1/+1
| | | | due to its wide use in technical standards.
* More spell checking of all source files -- correct missed errors, switch to ↵Dean Camera2010-07-301-1/+1
| | | | EN-GB spelling dictionary.
* 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.
* Renamed SERIAL_STREAM_ASSERT() macro to STDOUT_ASSERT().Dean Camera2010-06-177-216/+220
| | | | Minor tweaks to the library documentation.
* Fixed incorrect function references in the Mass Storage Class driver ↵Dean Camera2010-06-031-1/+3
| | | | documentation.
* More documentation fixes.Dean Camera2010-06-032-3/+3
|
* Minor documentation cleanups.Dean Camera2010-06-033-12/+12
|
* Add svn:eol-style property to source files, so that the line endings are ↵Dean Camera2010-05-089-1942/+1942
| | | | correctly converted to the target system's native end of line style.
* Change over unix line-endings to dos line endings.Dean Camera2010-05-071-1/+1
|
* Added new EVENT_CDC_Device_BreakSent() event and CDC_Host_SendBreak() ↵Dean Camera2010-05-061-0/+9
| | | | function to the Device and Host CDC Class drivers.
* Add briefs for the library core structures.Dean Camera2010-03-299-35/+140
|
* Add file-level brief documentation.Dean Camera2010-03-299-0/+63
| | | | 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-252-7/+7
| | | | | | 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-118-2/+48
| | | | to manually include private driver header files, instead of the public driver headers.
* Added Keyboard LED report masks (KEYBOARD_LED_*) to the HID class driver and ↵Dean Camera2010-02-071-0/+12
| | | | demos.
* Added keyboard modifier masks (HID_KEYBOARD_MODIFER_*) to the HID class ↵Dean Camera2010-02-071-12/+38
| | | | driver and Keyboard demos.
* Update copyright year to 2010.Dean Camera2009-12-309-18/+18
|
* Fix MIT license language to make its intent clearer.Dean Camera2009-12-289-63/+63
|
* Added new RNDIS Host class driver and the beginnings of a RNDISEthernetHost ↵Dean Camera2009-11-262-1/+114
| | | | | | | | Class Driver demo. Fixed all Class drivers to ensure they have appropriate guards on each function to ensure the device is enumerated before running, fixed error codes on all guards to return "DeviceDisconnected" where possble. Renamed HOST_SENDCONTROL_DeviceDisconnect enum value to HOST_SENDCONTROL_DeviceDisconnected to be in line with the rest of the library enum error codes.
* Fixed incorrect values for REPORT_ITEM_TYPE_* enum values causing corrupt ↵Dean Camera2009-11-231-3/+3
| | | | data in the HID Host Parser.
* The incomplete StandaloneProgrammer project now uses Host and Device Mass ↵Dean Camera2009-11-231-0/+63
| | | | | | | | | | | | 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-5/+5
| | | | | | 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.
* Spell check all source code variables, comments and strings.Dean Camera2009-11-092-6/+6
|
* Fixed HID host Class driver report send/receive report broken when issued ↵Dean Camera2009-11-091-0/+8
| | | | | | | | through the control pipe. Make Mass Storage device Class driver accept resets at any time, rather than just after a command block has been processed. Remove the HID device parser from the boot protocol Keyboard/Mouse demos.
* Add missing Printer.h common class driver file.Dean Camera2009-11-041-0/+71
|
* Oops - Keyboard boot report structure should be an array of 6 keycodes.Dean Camera2009-09-201-1/+1
|
* Added new Pipe_IsFrozen() macro to determine if the currently selected pipe ↵Dean Camera2009-09-201-8/+39
| | | | | | | | is frozen. Added new USB_GetHIDReportSize() function to the HID report parser to retrieve the size of a given report by its ID. More additions to the unfinished HID Host Class Driver.
* 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-278-85/+163
| | | | | | mode-independant definitions for clarity. Moved SCSI command/sense constants into the Mass Storage Class driver, instead of the user-code.
* Add SCSICodes.h to the Class Driver Common folder, and automatically include ↵Dean Camera2009-08-261-0/+85
| | | | it in both the Host and Device Mass Storage Class drivers. Delete existing version from the ClassDriver MassStorage device demo's /Lib/ folder.
* Fixed swapped paremeters in the HID state memory copy call while processing ↵Dean Camera2009-08-111-0/+1
| | | | | | | | | | a HID PUSH item in the HID report parser. Fixed memory corruption HID report parser when too many COLLECTION or PUSH items were processed. Make RNDIS device class driver include the CDC device class driver header, so that it can inherrit the required CDC functional descriptor macro. Make HID host class driver include the HID report parser.
* Fix redefinition warning when USB_DEVICE_ONLY is set on an AVR which does ↵Dean Camera2009-07-301-1/+1
| | | | not support USB host mode.
* Added const modifiers to device mode class drivers.Dean Camera2009-06-283-3/+3
| | | | | | Added parameter directions to function parameter documentation. Added new experimental FAST_STREAM_FUNCTIONS compile time option to speed up stream transfers at the expense of a higher FLASH consumption (needs testing to verify improved throughput).
* Reduce struct name pollution - group typedef struct names by class driver ↵Dean Camera2009-06-265-22/+29
| | | | name where appropriate.
* Clean up RNDIS demo type define names.Dean Camera2009-06-192-12/+12
|
* Break device mode class driver interfaces into seperate config and state ↵Dean Camera2009-06-186-164/+7
| | | | structs which are then combined, for clarity. Move device mode class driver interfaces back into the device mode class driver headers from the common class headers to make room for host class interfaces.
* Pipe_GetErrorFlags() now returns additional error flags for overflow and ↵Dean Camera2009-06-161-2/+2
| | | | | | underflow errors. Change MIDI demos to use real MIDI command values, and shift for the USB wrapper, rather than shift for the MIDI bytes. This is a little confusing for the MIDI USB wrapper, but allows for the use of real standardized MIDI command values.
* 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.
* Add host mode USB Class driver stubs, add beginnings of a CDC host class driver.Dean Camera2009-06-146-0/+1257
Split out common defines/types from class drivers into a seperate common class driver directory. Make central USB Class driver dispatch headers, used for both device and host modes.