3  *  This file contains special DoxyGen information for the generation of the main page and other special
 
   4  *  documentation pages. It is not a project source file.
 
   7 /** \mainpage RNDIS Class Ethernet Demo (with Webserver/Telnet)
 
   9  *  \section SSec_Compat Demo Compatibility:
 
  11  *  The following table indicates what microcontrollers are compatible with this demo.
 
  18  *  \section SSec_Info USB Information:
 
  20  *  The following table gives a rundown of the USB utilization of this demo.
 
  24  *    <td><b>USB Mode:</b></td>
 
  28  *    <td><b>USB Class:</b></td>
 
  29  *    <td>Communications Device Class (CDC)</td>
 
  32  *    <td><b>USB Subclass:</b></td>
 
  33  *    <td>Remote NDIS (Microsoft Proprietary CDC Class Networking Standard)</td>
 
  36  *    <td><b>Relevant Standards:</b></td>
 
  37  *    <td>Microsoft RNDIS Specification</td>
 
  40  *    <td><b>Usable Speeds:</b></td>
 
  41  *    <td>Full Speed Mode</td>
 
  45  *  \section SSec_Description Project Description: 
 
  47  *  Remote Network Driver Interface demonstration application.
 
  48  *  This gives a simple reference application for implementing
 
  49  *  a CDC RNDIS device acting as a simple network interface for
 
  50  *  ethernet packet exchange. RNDIS is a proprietary Microsoft
 
  51  *  standard; this demo will only work on Windows 2000 (manually
 
  52  *  patched with the Microsoft RNDIS hotfix) and above (with no
 
  53  *  manual patches), or on the latest Linux kernels.
 
  55  *  Before running, you will need to install the INF file that
 
  56  *  is located in the RNDISEthernet project directory. This will
 
  57  *  enable Windows to use its inbuilt RNDIS drivers, negating the
 
  58  *  need for special Windows drivers for the device. To install,
 
  59  *  right-click the .INF file and choose the Install option. If
 
  60  *  Windows 2000 is used, the Microsoft INF file in the hotfix
 
  61  *  will need to be altered to use the VID/PID of the demo and
 
  62  *  then chosen instead of the LUFA RNDIS INF file when prompted.
 
  64  *  When enumerated, this demo will install as a new network
 
  65  *  adapter which ethernet packets can be sent to and received
 
  66  *  from. Running on top of the adapter is a very simple TCP/IP
 
  67  *  stack with a HTTP webserver and TELNET host which can be
 
  68  *  accessed through a web browser at IP address 10.0.0.2:80 or
 
  69  *  through a TELNET client at 10.0.0.2:25. This device also supports
 
  70  *  ping echos via the ICMP protocol.
 
  72  *  \note The TCP/IP stack in this demo has a number of limitations
 
  73  *  and should serve as an example only - it is not fully featured nor
 
  74  *  compliant to the TCP/IP specification. For complete projects, it is 
 
  75  *  recommended that it be replaced with an external open source TCP/IP
 
  76  *  stack that is feature complete, such as the uIP stack.
 
  78  *  \section SSec_Options Project Options
 
  80  *  The following defines can be found in this demo, which can control the demo behaviour when defined, or changed in value.
 
  84  *    <td><b>Define Name:</b></td>
 
  85  *    <td><b>Location:</b></td>
 
  86  *    <td><b>Description:</b></td>
 
  89  *    <td>NO_DECODE_ETHERNET</td>
 
  90  *    <td>Makefile CDEFS</td>
 
  91  *    <td>When defined, received Ethernet headers will not be decoded and printed to the device serial port.</td>
 
  94  *    <td>NO_DECODE_ARP</td>
 
  95  *    <td>Makefile CDEFS</td>
 
  96  *    <td>When defined, received ARP headers will not be decoded and printed to the device serial port.</td>
 
  99  *    <td>NO_DECODE_IP</td>
 
 100  *    <td>Makefile CDEFS</td>
 
 101  *    <td>When defined, received IP headers will not be decoded and printed to the device serial port.</td>
 
 104  *    <td>NO_DECODE_ICMP</td>
 
 105  *    <td>Makefile CDEFS</td>
 
 106  *    <td>When defined, received ICMP headers will not be decoded and printed to the device serial port.</td>
 
 109  *    <td>NO_DECODE_TCP</td>
 
 110  *    <td>Makefile CDEFS</td>
 
 111  *    <td>When defined, received TCP headers will not be decoded and printed to the device serial port.</td>
 
 114  *    <td>NO_DECODE_UDP</td>
 
 115  *    <td>Makefile CDEFS</td>
 
 116  *    <td>When defined, received UDP headers will not be decoded and printed to the device serial port.</td>
 
 119  *    <td>NO_DECODE_DHCP</td>
 
 120  *    <td>Makefile CDEFS</td>
 
 121  *    <td>When defined, received DHCP headers will not be decoded and printed to the device serial port.</td>