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 USB to Serial Converter Project
9 * \section Sec_Compat Project Compatibility:
11 * The following list indicates what microcontrollers are compatible with this project.
13 * - Series 7 USB AVRs (AT90USBxxx7)
14 * - Series 6 USB AVRs (AT90USBxxx6)
15 * - Series 4 USB AVRs (ATMEGAxxU4)
16 * - Series 2 USB AVRs (AT90USBxx2, ATMEGAxxU2)
18 * \section Sec_Info USB Information:
20 * The following table gives a rundown of the USB utilization of this project.
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>Abstract Control Model (ACM)</td>
36 * <td><b>Relevant Standards:</b></td>
37 * <td>USBIF CDC Class Standard</td>
40 * <td><b>Usable Speeds:</b></td>
41 * <td>Full Speed Mode</td>
45 * \section Sec_Description Project Description:
47 * USB to Serial bridge project. This project allows a USB AVR to serve
48 * as a USB to USART bridge between a USB host and a device lacking a
49 * USB port. When programmed into a USB AVR, the AVR will enumerate as a
52 * The AVR's hardware USART's settings will change to mirror as closely as
53 * possible the serial settings set on the host. However, due to hardware
54 * limitations, some options may not be supported (baud rates with unacceptable
55 * error rates at the AVR's clock speed, data lengths other than 6, 7 or 8 bits,
56 * 1.5 stop bits, parity other than none, even or odd).
58 * After running this project for the first time on a new computer,
59 * you will need to supply the .INF file located in this project
60 * project's directory as the device's driver when running under
61 * Windows. This will enable Windows to use its inbuilt CDC drivers,
62 * negating the need for custom drivers for the device. Other
63 * Operating Systems should automatically use their own inbuilt
66 * \section Sec_Options Project Options
68 * The following defines can be found in this project, which can control the project behaviour when defined, or changed in value.
72 * <td><b>Define Name:</b></td>
73 * <td><b>Location:</b></td>
74 * <td><b>Description:</b></td>
77 * <td>BUFF_STATICSIZE</td>
79 * <td>Defines the maximum number of bytes which can be buffered in each Ring Buffer.</td>