aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/RNDISEthernet
Commit message (Collapse)AuthorAgeFilesLines
* Changed over all deprecated GCC structure tag initializers to the ↵Dean Camera2009-04-202-89/+89
| | | | standardized C99 format (thanks to Mike Alexander).
* More documentation changes for better module-level documentation rather than ↵Dean Camera2009-04-171-10/+15
| | | | file-level documentation.
* Renamed Serial_Stream driver to SerialStream to remain consistent with the ↵Dean Camera2009-04-173-8/+7
| | | | rest of the library's naming scheme for files.
* Partial commit: change references to Drivers/AT90USBXXX to Drivers/Peripheral.Dean Camera2009-04-163-4/+4
|
* Fixed GenericHIDHost demo report write routine incorrect for control type ↵Dean Camera2009-04-162-17/+10
| | | | | | | | | | | | | | | | | | requests (thanks to Andrei Krainev). Removed Endpoint_ClearCurrentBank() and Pipe_ClearCurrentBank() in favour of new Endpoint_ClearIN(), Endpoint_ClearOUT(), Endpoint_ClearControlIN(), Endpoint_ClearControlOUT(), Pipe_ClearIN(), Pipe_ClearOUT(), Pipe_ClearControlIN() and Pipe_ClearControlOUT() macros (done to allow for the detection of packets of zero length). Renamed *_ReadWriteAllowed() macros to *_IsReadWriteAllowed() to remain consistent with the rest of the LUFA API. Endpoint_IsSetupReceived() macro has been renamed to Endpoint_IsSETUPReceived(), Endpoint_ClearSetupReceived() macro has been renamed to Endpoint_ClearControlSETUP(), the Pipe_IsSetupSent() macro has been renamed to Pipe_IsSETUPSent() and the Pipe_ClearSetupSent() macro is no longer applicable and should be removed - changes made to compliment the new endpoint and pipe bank management API. Updated all demos, bootloaders and projects to use the new endpoint and pipe management APIs (thanks to Roman Thiel). Updated library doxygen documentation, added groups, changed documentation macro functions to real functions for clarity. Removed old endpoint and pipe aliased read/write/discard routines which did not have an explicit endian specifier for clarity. Removed the ButtLoadTag.h header file, as no one used for its intended purpose anyway.
* Fixed minor issue with the RNDISEthernet demo DHCP protocol decoder routine ↵Dean Camera2009-04-151-1/+1
| | | | | | using incorrectly named variables (thanks to Jonathan Oakley). Fixed GenericHIDHost demo report write routine incorrect for control type requests (thanks to Andrei).
* Fixed RNDISEthenet demo checking the incorrect message field for packet size ↵Dean Camera2009-04-131-1/+1
| | | | | | constraints (thanks to Jonathan). Fixed WriteNextReport code in the GenericHIDHost demo using incorrect parameter types and not selecting the correct endpoint.
* Added preprocessor checks and documentation to the bootloaders giving ↵Dean Camera2009-04-072-4/+4
| | | | information about missing SIGNATURE_x defines due to outdated avr-libc versions.
* All comments in the library, bootloaders, demos and projects have now been ↵Dean Camera2009-04-0115-38/+38
| | | | spell-checked and spelling mistakes/typos corrected.
* Corrected bitfields -- the smallest datatype required for each bitfield is ↵Dean Camera2009-03-262-12/+12
| | | | now used, rather than relying on GCC to truncate unused bytes in bitfields (thanks to Walt Sacuta).
* Seperated out OTG, Device and Host mode demos into seperate folders for ↵Dean Camera2009-03-2031-0/+6605
clarity. Adjusted makefiles so that the path to the LUFA library can be set in one place.