aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/LowLevel/RNDISEthernet/Lib
Commit message (Collapse)AuthorAgeFilesLines
...
* Add svn:eol-style property to source files, so that the line endings are ↵Dean Camera2010-05-0822-3444/+3444
| | | | correctly converted to the target system's native end of line style.
* USB_Init() no longer calls sei() to enable global interrupts - this must now ↵Dean Camera2010-04-281-0/+2
| | | | be done in the user application once all init code has run.
* Fix up the incomplete Webserver project so that it integrates with the uIP ↵Dean Camera2010-01-211-0/+3
| | | | | | stack correctly. Add simple HTTP webserver as a placeholder until FatFS can be integrated. Begin to look into the RNDIS Host Class Driver, which seems to crash on test hardware after many packets have been received.
* Update copyright year to 2010.Dean Camera2009-12-3022-44/+44
|
* Fix MIT license language to make its intent clearer.Dean Camera2009-12-2822-156/+156
|
* Added new RNDIS Host class driver and the beginnings of a RNDISEthernetHost ↵Dean Camera2009-11-261-2/+15
| | | | | | | | 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.
* Spell check all source code variables, comments and strings.Dean Camera2009-11-094-4/+4
|
* Application documentation/comment cleanup.Dean Camera2009-10-083-3/+0
|
* Cleanups to RNDIS device demos. Fix issue in RNDIS demos where the memory ↵Dean Camera2009-08-076-24/+28
| | | | | | | | would become corrupted due to an incorrect bounds check when iterating over the port state table, causing random resets. Revert change to Template_Endpoint_Control_R.c, which broke control stream reads. Remove uneeded ADC.h include in the class driver AudioOutput demo.
* Make Control Endpoint stream transfers more reliable by adding in early ↵Dean Camera2009-08-052-12/+17
| | | | | | | | aborts for unexpected new SETUP tokens, or unexpected status stage during control stream writes. Fix corruption in Device RNDIS demos TCP stack when too many connections attempted simultaneously, freezing the device when a page was re-fetched before the first connection was closed. Fix incorrect model compatibility information in the Host LowLevel demo overview text files.
* Added 404 errors to the RNDIS Webserver example.Dean Camera2009-07-291-19/+54
|
* Added new EEPROM and FLASH buffer versions of the Endpoint and Pipe stream ↵Dean Camera2009-07-131-1/+1
| | | | functions. Changed Endpoint.c and Pipe.c to use a templated system to build the seperate functions, rather than duplicating each function's code many times.
* Added compatibility list to the documentation of each individual demo.Dean Camera2009-07-131-1/+1
| | | | | | Documented FAST_STREAM_TRANSFERS compile time option. Reduced the TCP window size for the RNDIS demos (Class and LowLevel) to make them compatible with the AT90USB64x.
* Added const modifiers to device mode class drivers.Dean Camera2009-06-2813-67/+67
| | | | | | 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).
* Clean up RNDIS demo type define names.Dean Camera2009-06-192-30/+30
|
* Doxygen corrections to fix Doxygen warnings in some demos.Dean Camera2009-06-151-1/+1
|
* Converted device mode low-level demos to schedulerless.Dean Camera2009-06-073-10/+4
|
* Move new Class Driver powered demos to a new ClassDriver subdirectory, ↵Dean Camera2009-06-0522-0/+3391
re-add old low level demos to a LowLevel subdirectory.