aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/LowLevel/RNDISEthernetHost/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Update copyrights for 2017.Dean Camera2017-04-182-4/+4
|
* Update copyrights to 2016.Dean Camera2016-01-312-4/+4
|
* Update copyrights to 2015 (better late than never).Dean Camera2015-05-172-4/+4
|
* Update copyrights for 2014.Dean Camera2014-01-042-4/+4
|
* Fix typo in the Host RNDISEthernet low level demo.Dean Camera2013-01-191-1/+1
|
* Update copyright year to 2013.Dean Camera2013-01-032-4/+4
|
* Minor documentation improvements.Dean Camera2012-10-052-2/+2
|
* Update file contributor copyrights for 2012.Dean Camera2012-02-042-2/+2
|
* Update file header copyrights for 2012.Dean Camera2012-02-042-2/+2
|
* Spell check library source code files.Dean Camera2011-06-011-1/+1
|
* Altered all endpoint/pipe stream transfers so that the new BytesProcessed ↵Dean Camera2011-01-101-2/+3
| | | | | | | | | | 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-012-4/+4
|
* Changed over www.fourwalledcubicle.com links to the new www.lufa-lib.org ↵Dean Camera2010-10-282-2/+2
| | | | 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-243-257/+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.
* Clean up excessive whitespace at the end of each line using the wspurify ↵Dean Camera2010-10-133-60/+63
| | | | tool made by Laszlo Monda
* Reverted Endpoint/Pipe non-sequential configuration hack, placed restriction ↵Dean Camera2010-09-302-10/+2
| | | | | | | | | | on the configuration order instead to ensure maximum reliability. Altered all low level device and host mode demos to ensure that endpoints and pipes are configured in ascending order properly. Rewrote all low level host mode demos' configuration descriptor parser code to ensure that pipes are enumerated in ascending order, and to ensure maximum compatibility with devices. Incremented all device mode demo's device descriptor revision numbers to ensure that any descriptor changes are re-fetched on machines which have enumerated previous versions.
* More spell checking of all source files -- correct missed errors, switch to ↵Dean Camera2010-07-301-1/+1
| | | | EN-GB spelling dictionary.
* Spell check all source files once again to find any typos.Dean Camera2010-07-292-6/+6
|
* Update all demos, projects and bootloaders to indent all function ↵Dean Camera2010-07-212-10/+24
| | | | | | parameters, one per line, for better readability. Add missing const qualifiers to the demos.
* Minor documentation cleanups.Dean Camera2010-06-031-19/+19
|
* Add svn:eol-style property to source files, so that the line endings are ↵Dean Camera2010-05-083-626/+626
| | | | correctly converted to the target system's native end of line style.
* Add const keyword to the demo function parameters where possible.Dean Camera2010-04-182-12/+12
|
* Update copyright year to 2010.Dean Camera2009-12-303-6/+6
|
* Fix MIT license language to make its intent clearer.Dean Camera2009-12-283-21/+21
|
* Added new RNDIS Host class driver and the beginnings of a RNDISEthernetHost ↵Dean Camera2009-11-262-19/+23
| | | | | | | | 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.
* Fix build and Doxygen errors.Dean Camera2009-11-251-2/+2
|
* Added new RNDISHost Host LowLevel demo. Fixed misnamed Pipe_SetPipeToken() ↵Dean Camera2009-11-253-0/+622
macro for setting a pipe's direction. Fixed CDCHost failing on devices with bidirectional endpoints.