diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-10-08 07:18:28 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-10-08 07:18:28 +0000 |
commit | 664a2921816069483604f5e05a2a02b6ddf8727a (patch) | |
tree | c8bc5b6a52dd7dcc3f9233270569ee9cd2ebd0ba /Demos/Device/LowLevel/RNDISEthernet/Lib | |
parent | bdedbd558ce3db0d7c1e0ff6cdde2f480277aff7 (diff) | |
download | lufa-664a2921816069483604f5e05a2a02b6ddf8727a.tar.gz lufa-664a2921816069483604f5e05a2a02b6ddf8727a.tar.bz2 lufa-664a2921816069483604f5e05a2a02b6ddf8727a.zip |
Application documentation/comment cleanup.
Diffstat (limited to 'Demos/Device/LowLevel/RNDISEthernet/Lib')
-rw-r--r-- | Demos/Device/LowLevel/RNDISEthernet/Lib/Ethernet.c | 1 | ||||
-rw-r--r-- | Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.c | 1 | ||||
-rw-r--r-- | Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.c | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/Demos/Device/LowLevel/RNDISEthernet/Lib/Ethernet.c b/Demos/Device/LowLevel/RNDISEthernet/Lib/Ethernet.c index 2856131c4..debd322e4 100644 --- a/Demos/Device/LowLevel/RNDISEthernet/Lib/Ethernet.c +++ b/Demos/Device/LowLevel/RNDISEthernet/Lib/Ethernet.c @@ -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;
diff --git a/Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.c b/Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.c index ced33390f..910191d63 100644 --- a/Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.c +++ b/Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.c @@ -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};
diff --git a/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.c b/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.c index 2537286b7..06f0c6965 100644 --- a/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.c +++ b/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.c @@ -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.
|