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 CDC Class USB AVR Bootloader
 
   9  *  \section SSec_Info USB Information:
 
  11  *  The following table gives a rundown of the USB utilization of this demo.
 
  15  *   <td><b>USB Mode:</b></td>
 
  19  *   <td><b>USB Class:</b></td>
 
  20  *   <td>Communications Device Class (CDC)</td>
 
  23  *   <td><b>USB Subclass:</b></td>
 
  24  *   <td>Abstract Control Model (ACM)</td>
 
  27  *   <td><b>Relevant Standards:</b></td>
 
  28  *   <td>USBIF CDC Class Standard</td>
 
  31  *   <td><b>Usable Speeds:</b></td>
 
  32  *   <td>Full Speed Mode</td>
 
  36  *  \section SSec_Description Project Description: 
 
  38  * This bootloader enumerates to the host as a CDC Class device (virtual serial port), allowing for AVR109
 
  39  * protocol compatible programming software to load firmware onto the AVR.      
 
  41  * Out of the box this bootloader builds for the USB1287, and will fit into 4KB of bootloader space. If
 
  42  * you wish to enlarge this space and/or change the AVR model, you will need to edit the BOOT_START and MCU
 
  43  * values in the accompanying makefile.
 
  45  * This bootloader is compatible with the open source application AVRDUDE, or Atmel's AVRPROG.
 
  47  *  \section SSec_Options Project Options
 
  49  *  The following defines can be found in this demo, which can control the demo behaviour when defined, or changed in value.
 
  53  *    <td><b>Define Name:</b></td>
 
  54  *    <td><b>Location:</b></td>
 
  55  *    <td><b>Description:</b></td>
 
  58  *    <td>SIGNATURE_0, SIGNATURE_1, SIGNATURE_2</td>
 
  59  *    <td>Makefile CDEFS</td>
 
  60  *    <td>AVR part signature bytes. These are normally defined as part of the AVR device header files in recent avr-libc
 
  61  *        distributions. If your avr-libc library is out of date and does not define these values, you can define them
 
  62  *        manually in the makefile CDEFS.</td>