aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/ClassDriver/RNDISEthernet/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Spell check all source files once again to find any typos.Dean Camera2010-07-291-1/+1
|
* Update all demos, projects and bootloaders to indent all function ↵Dean Camera2010-07-2118-37/+88
| | | | | | parameters, one per line, for better readability. Add missing const qualifiers to the demos.
* Change over all makefiles to use C99 standards mode, rather than C99 + GNU ↵Dean Camera2010-07-181-6/+1
| | | | Extensions.
* Fix compile and Doxygen errors due to the spell-check changes in the source ↵Dean Camera2010-06-161-3/+1
| | | | code.
* Change over Doxygen \note documentation to \pre where applicable.Dean Camera2010-06-151-2/+3
|
* Minor documentation cleanups.Dean Camera2010-06-038-64/+63
|
* Switch to using the correct intptr_t type use where a pointer must be cast ↵Dean Camera2010-05-262-5/+5
| | | | to an integer type.
* Fixed RNDISEthernet demos crashing when calculating checksums for ↵Dean Camera2010-05-252-2/+2
| | | | | | Ethernet/TCP packets of more than ~500 bytes due to an overflow in the checksum calculation loop (thanks to Kevin Malec). Removed string Attributes from the Service Discovery Protocol code to minimise the potential points of failure while the base code is being debugged.
* Add svn:eol-style property to source files, so that the line endings are ↵Dean Camera2010-05-0819-2698/+2698
| | | | 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.
* Add briefs for the library core structures.Dean Camera2010-03-291-1/+1
|
* Fix up the incomplete Webserver project so that it integrates with the uIP ↵Dean Camera2010-01-211-1/+4
| | | | | | 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-3019-38/+38
|
* Fix MIT license language to make its intent clearer.Dean Camera2009-12-2819-135/+135
|
* Spell check all source code variables, comments and strings.Dean Camera2009-11-095-6/+6
|
* Application documentation/comment cleanup.Dean Camera2009-10-082-2/+0
|
* Add CDC Host class driver EVENT_CDC_Host_ControLineStateChanged() event.Dean Camera2009-08-111-1/+1
| | | | Minor documentation fixes.
* Cleanups to RNDIS device demos. Fix issue in RNDIS demos where the memory ↵Dean Camera2009-08-077-33/+43
| | | | | | | | 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 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-2812-61/+61
| | | | | | 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).
* Break device mode class driver interfaces into seperate config and state ↵Dean Camera2009-06-182-9/+9
| | | | 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.
* Doxygen corrections to fix Doxygen warnings in some demos.Dean Camera2009-06-151-1/+1
|
* Add host mode USB Class driver stubs, add beginnings of a CDC host class driver.Dean Camera2009-06-141-1/+1
| | | | | | 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.
* Move new Class Driver powered demos to a new ClassDriver subdirectory, ↵Dean Camera2009-06-0519-0/+2645
re-add old low level demos to a LowLevel subdirectory.