X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/b9b03aadb219d06fbad9d110e508db93e45461af..5de364163f5a7597ba2f54e37cdea493fbd1e7ff:/Demos/Device/LowLevel/RNDISEthernet/Lib/Ethernet.c diff --git a/Demos/Device/LowLevel/RNDISEthernet/Lib/Ethernet.c b/Demos/Device/LowLevel/RNDISEthernet/Lib/Ethernet.c index 3d34f716a..5a5c37069 100644 --- a/Demos/Device/LowLevel/RNDISEthernet/Lib/Ethernet.c +++ b/Demos/Device/LowLevel/RNDISEthernet/Lib/Ethernet.c @@ -31,13 +31,12 @@ /** \file * * Ethernet frame packet handling routines. This protocol handles the processing of raw Ethernet - * frames sent and received, deferring the processing of subpacket protocols to the appropriate + * frames sent and received, deferring the processing of sub-packet protocols to the appropriate * protocol handlers, such as DHCP or ARP. */ #include "Ethernet.h" -/* Global Variables: */ /** Ethernet Frame buffer structure, to hold the incoming Ethernet frame from the host. */ Ethernet_Frame_Info_t FrameIN; @@ -116,8 +115,8 @@ void Ethernet_ProcessPacket(void) /** Calculates the appropriate ethernet checksum, consisting of the addition of the one's * compliment of each word, complimented. * - * \param Data Pointer to the packet buffer data whose checksum must be calculated - * \param Bytes Number of bytes in the data buffer to process + * \param[in] Data Pointer to the packet buffer data whose checksum must be calculated + * \param[in] Bytes Number of bytes in the data buffer to process * * \return A 16-bit Ethernet checksum value */