aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/LowLevel/RNDISEthernet/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright year to 2013.Dean Camera2013-01-0321-42/+42
|
* Minor documentation improvements.Dean Camera2012-10-0521-21/+21
|
* Fix accidental struct copies on the stack in the old RNDISEthernet demo TCP ↵Dean Camera2012-06-262-41/+41
| | | | code.
* AppConfigHeaders: Make sure that in applications using an AppConfig.h ↵Dean Camera2012-05-151-0/+2
| | | | configuration file, all application headers include the configuration file.
* AppConfigHeaders: Move out the last of the demo/app configurations into new ↵Dean Camera2012-05-133-10/+2
| | | | AppConfig.h header files.
* AppConfigHeaders: Switch low level Device mode demos to use LUFAConfig.h ↵Dean Camera2012-05-132-6/+4
| | | | configuration header files.
* Update StaticAnalysisTest to check for missing header files. Fix found ↵Dean Camera2012-02-291-1/+1
| | | | incorrect header file paths in the demos and projects.
* Update file contributor copyrights for 2012.Dean Camera2012-02-0421-21/+21
|
* Update file header copyrights for 2012.Dean Camera2012-02-0421-21/+21
|
* Minor documentation improvements.Dean Camera2012-02-011-1/+1
|
* Fixed port state table corruption in the TCP layer of the RNDIS Ethernet ↵Dean Camera2011-10-091-3/+3
| | | | | | device demos. Fix additional warnings under GCC 4.6.
* Add const qualifier to all PROGMEM data to prevent warnings in newer AVR-GCC ↵Dean Camera2011-09-212-10/+10
| | | | compiler versions.
* More endianness porting of the LUFA device mode class drivers.Dean Camera2011-07-112-4/+8
| | | | | | 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.
* Fix Doxygen documentation errors.Dean Camera2011-06-141-1/+1
|
* Massive corrections to the project documentation and code comments, thanks ↵Dean Camera2011-06-054-8/+8
| | | | to Russian translation services provided by Andrey from Microsin.ru.
* Spell check library source code files.Dean Camera2011-06-012-2/+2
|
* Add RNDIS Device support to the Webserver project, so that the files stored ↵Dean Camera2011-05-221-1/+1
| | | | on the device can be viewed from a web-browser while the board is plugged into a host machine.
* Add new RNDIS_Host_IsPacketReceived(), RNDIS_Device_ReadPacket() and ↵Dean Camera2011-05-182-4/+2
| | | | | | RNDIS_Device_WritePacket() functions to the Device RNDIS Class Driver. Modify RNDIS demos to suit the simplified Ethernet_Frame_Info_t structure.
* Remove redundant type information for bitfield elements, other than the ↵Dean Camera2011-04-102-14/+14
| | | | | | signed/unsignedness of the element. Change type of USB_SelectedPipe and USB_SelectedEndpoint for the AVR32 UC3 architecture to uint32_t to reduce the compiled code size.
* Use the MIN() macro where possible instead of manual "(x < y) ? x : y" ↵Dean Camera2011-03-231-1/+1
| | | | constructs.
* Removed SerialStream module, rolled functionality into the base USART Serial ↵Dean Camera2011-01-301-1/+1
| | | | | | | | peripheral driver instead through the new Serial_CreateStream() and Serial_CreateBlockingStream() methods. Renamed the Serial byte send/receive functions to remain consistent with the CDC driver's byte functions. Altered the serial byte receive function to make it non-blocking.
* Update copyright year on all source files.Dean Camera2011-01-0121-42/+42
|
* Changed over www.fourwalledcubicle.com links to the new www.lufa-lib.org ↵Dean Camera2010-10-2821-22/+22
| | | | 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-1/+0
| | | | | | | | 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-246-284/+4
| | | | | | 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-1322-391/+413
| | | | tool made by Laszlo Monda
* 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-303-3/+3
| | | | EN-GB spelling dictionary.
* Spell check all source files once again to find any typos.Dean Camera2010-07-291-2/+2
|
* Rename reserved members of all structs so that they are uniformly named ↵Dean Camera2010-07-261-1/+1
| | | | | | across all demos/projects/bootloaders. Added start of the Incomplete TMC demo's command parser code.
* Fix up minor whitespace formatting errors.Dean Camera2010-07-222-2/+2
|
* Update all demos, projects and bootloaders to indent all function ↵Dean Camera2010-07-2118-35/+85
| | | | | | 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.
* Change over Doxygen \note documentation to \pre where applicable.Dean Camera2010-06-151-1/+1
|
* Minor documentation cleanups.Dean Camera2010-06-039-83/+82
|
* 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-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.