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
9 * \section Sec_Compat Demo Compatibility:
11 * The following list indicates what microcontrollers are compatible with this demo.
13 * \li Series 7 USB AVRs (AT90USBxxx7)
14 * \li Series 6 USB AVRs (AT90USBxxx6)
15 * \li Series AU XMEGA AVRs (ATXMEGAxxxAxU)
16 * \li Series B XMEGA AVRs (ATXMEGAxxxBx)
17 * \li Series C XMEGA AVRs (ATXMEGAxxxCx)
19 * \section Sec_Info USB Information:
21 * The following table gives a rundown of the USB utilization of this demo.
25 * <td><b>USB Mode:</b></td>
29 * <td><b>USB Class:</b></td>
30 * <td>Communications Device Class (CDC)</td>
33 * <td><b>USB Subclass:</b></td>
34 * <td>Remote NDIS (Microsoft Proprietary CDC Class Networking Standard)</td>
37 * <td><b>Relevant Standards:</b></td>
38 * <td>Microsoft RNDIS Specification</td>
41 * <td><b>Supported USB Speeds:</b></td>
42 * <td>Full Speed Mode</td>
46 * \section Sec_Description Project Description:
48 * Remote Network Driver Interface demonstration application.
49 * This gives a simple reference application for implementing
50 * a CDC RNDIS device acting as a simple network interface for
51 * ethernet packet exchange. RNDIS is a proprietary Microsoft
52 * standard; this demo will only work on Windows XP, or on modern
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. When packets are received from the host, the on-board LEDs should
69 * \section Sec_Options Project Options
71 * The following defines can be found in this demo, which can control the demo behaviour when defined, or changed in value.
75 * <th><b>Define Name:</b></th>
76 * <th><b>Location:</b></th>
77 * <th><b>Description:</b></th>
80 * <td>ADAPTER_MAC_ADDRESS</td>
81 * <td>AppConfig.h</td>
82 * <td>Configures the MAC address of the RNDIS adapter on the host (PC) side.</td>