diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2011-05-18 14:33:34 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2011-05-18 14:33:34 +0000 |
commit | 9d733d44b402ce33c3c41e45b497c2f92be393f5 (patch) | |
tree | 2ddf8b9b25e696ec4a2ab30c181f253005036be7 /LUFA/ManPages | |
parent | 41de1d1dab863c7b769f6e492c36c115994c403d (diff) | |
download | lufa-9d733d44b402ce33c3c41e45b497c2f92be393f5.tar.gz lufa-9d733d44b402ce33c3c41e45b497c2f92be393f5.tar.bz2 lufa-9d733d44b402ce33c3c41e45b497c2f92be393f5.zip |
Add new RNDIS_Host_IsPacketReceived(), RNDIS_Device_ReadPacket() and RNDIS_Device_WritePacket() functions to the Device RNDIS Class Driver.
Modify RNDIS demos to suit the simplified Ethernet_Frame_Info_t structure.
Diffstat (limited to 'LUFA/ManPages')
-rw-r--r-- | LUFA/ManPages/ChangeLog.txt | 1 | ||||
-rw-r--r-- | LUFA/ManPages/MigrationInformation.txt | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/LUFA/ManPages/ChangeLog.txt b/LUFA/ManPages/ChangeLog.txt index 237710d98..dd58c24dd 100644 --- a/LUFA/ManPages/ChangeLog.txt +++ b/LUFA/ManPages/ChangeLog.txt @@ -29,6 +29,7 @@ * - Added new architecture independant functions to enable, disable, save and restore the Global Interrupt Enable flags * - Added USE_LUFA_CONFIG_HEADER compile time option to include a LUFAConfig.h header in the user director for LUFA configuration * tokens as an alternative to tokens defined in the project makefile + * - Added new RNDIS Device Classs Driver packet send and receive functions * - Library Applications: * - Added ability to write protect Mass Storage disk write operations from the host OS * - Added new MIDIToneGenerator project diff --git a/LUFA/ManPages/MigrationInformation.txt b/LUFA/ManPages/MigrationInformation.txt index 8d35bbd4c..d3782d317 100644 --- a/LUFA/ManPages/MigrationInformation.txt +++ b/LUFA/ManPages/MigrationInformation.txt @@ -51,6 +51,9 @@ * code using these functions should replace the previous function names with the new function names. * - The Endpoint_*_DWord() functions have been renamed Endpoint_*_32() to ensure they are correct across all architectures. Existing * code using these functions should replace the previous function names with the new function names. + * - The Device mode RNDIS class driver no longer stores the incoming and outgoing packets in the class driver instance; the user is + * now expected to manually define a storage location for the packet data. Packets must now be sent and received manually via a call + * to \ref RNDIS_Device_ReadPacket() and/or \ref RNDIS_Device_WritePacket(). * * <b>Host Mode</b> * - The Pipe stream functions now all require a \c BytesProcessed parameter instead of the previous callback parameter. |