aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/ClassDriver/RNDISEthernet/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Documentation: Update copyrights to 2019.Dean Camera2019-01-0819-38/+38
|
* Update copyrights for 2018.Dean Camera2018-01-0419-38/+38
|
* Update copyrights for 2017.Dean Camera2017-04-1819-38/+38
|
* Update copyrights to 2016.Dean Camera2016-01-3119-38/+38
|
* Fix additional void pointer arithmetic in the class driver RNDIS demo.Dean Camera2015-12-221-1/+1
|
* Add DHCP Lease Time to RNDIS DemoStefan Hellermann2015-09-302-2/+13
| | | | | | The RNDIS ClassDriver and LowLevel Demo won't work on some Linux hosts as their DHCP client requires the DHCP Option Lease Time. Add it to both Demos. Tested on Fedora Linux 22.
* Update copyrights to 2015 (better late than never).Dean Camera2015-05-1719-38/+38
|
* Obsolete the old MACROS and MACROE convenience macros.Dean Camera2014-09-141-5/+5
|
* Fix overflow for RNDIS class driver responses when returning the adapter ↵Dean Camera2014-08-312-3/+3
| | | | query list (thanks to Peter Mc Shane).
* Update copyrights for 2014.Dean Camera2014-01-0419-38/+38
|
* Fix broken RNDIS device demos when NO_ETHERNET_DECODE was not defined.Dean Camera2013-05-181-1/+0
|
* Minor documentation improvements.Dean Camera2013-03-185-8/+8
|
* Update copyright year to 2013.Dean Camera2013-01-0319-38/+38
|
* Minor documentation improvements.Dean Camera2012-10-0519-19/+19
|
* Fix accidental struct copies on the stack in the old RNDISEthernet demo TCP ↵Dean Camera2012-06-262-42/+42
| | | | 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-8/+2
| | | | AppConfig.h header files.
* AppConfigHeaders: Switch class driver Device mode demos to use LUFAConfig.h ↵Dean Camera2012-05-132-6/+2
| | | | configuration header files.
* Update file contributor copyrights for 2012.Dean Camera2012-02-0419-19/+19
|
* Update file header copyrights for 2012.Dean Camera2012-02-0419-19/+19
|
* Minor documentation improvements.Dean Camera2012-02-011-1/+1
|
* Added Class, ClassDevice, ClassHost and ClassCommon to the internal class ↵Dean Camera2011-11-182-2/+2
| | | | driver source filenames to prevent ambiguities.
* 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.
* Fix incorrect function call name in USB_Host_SendControlRequest() for AVR8 ↵Dean Camera2011-10-071-1/+1
| | | | devices.
* Add const qualifier to all PROGMEM data to prevent warnings in newer AVR-GCC ↵Dean Camera2011-09-211-8/+8
| | | | compiler versions.
* Fixed error in the pipe unordered allocation algorithm for the AVR8 devices ↵Dean Camera2011-07-121-1/+1
| | | | breaking compatibility with some devices.
* More endianness porting of the LUFA device mode class drivers.Dean Camera2011-07-114-9/+16
| | | | | | 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.
* Massive corrections to the project documentation and code comments, thanks ↵Dean Camera2011-06-053-7/+7
| | | | 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-183-9/+6
| | | | | | 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.
* 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-0119-38/+38
|
* Changed over www.fourwalledcubicle.com links to the new www.lufa-lib.org ↵Dean Camera2010-10-2819-20/+20
| | | | 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-241-1/+0
| | | | | | 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-1319-295/+314
| | | | tool made by Laszlo Monda
* More spell checking of all source files -- correct missed errors, switch to ↵Dean Camera2010-07-302-2/+2
| | | | EN-GB spelling dictionary.
* 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.