Application documentation/comment cleanup.

This commit is contained in:
Dean Camera 2009-10-08 07:18:28 +00:00
parent bdedbd558c
commit 664a292181
42 changed files with 38 additions and 51 deletions

View file

@ -37,7 +37,6 @@
#include "Ethernet.h"
/* Global Variables: */
/** Ethernet Frame buffer structure, to hold the incoming Ethernet frame from the host. */
Ethernet_Frame_Info_t FrameIN;

View file

@ -37,7 +37,6 @@
#define INCLUDE_FROM_RNDIS_C
#include "RNDIS.h"
/* Global Variables: */
/** Physical MAC address of the network adapter, which becomes the MAC address of the host for packets sent to the adapter. */
static MAC_Address_t PROGMEM AdapterMACAddress = {ADAPTER_MAC_ADDRESS};

View file

@ -38,7 +38,6 @@
#define INCLUDE_FROM_TCP_C
#include "TCP.h"
/* Global Variables: */
/** Port state table array. This contains the current status of TCP ports in the device. To save on space, only open ports are
* stored - closed ports may be overwritten at any time, and the system will assume any ports not present in the array are closed. This
* allows for MAX_OPEN_TCP_PORTS to be less than the number of ports used by the application if desired.

View file

@ -37,7 +37,7 @@
#include "RNDISEthernet.h"
/** Main program entry point. This routine configures the hardware required by the application, then
* starts the scheduler to run the USB management task.
* enters a loop to run the application tasks in sequence.
*/
int main(void)
{