Board Dataflash driver now allows for dataflash ICs which use different shifts for...
[pub/USBasp.git] / Bootloaders / CDC / BootloaderCDC.txt
1 /** \file
2 *
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.
5 */
6
7 /** \mainpage CDC Class USB AVR Bootloader
8 *
9 * This bootloader enumerates to the host as a CDC Class device (virtual serial port), allowing for AVR109
10 * protocol compatible programming software to load firmware onto the AVR.
11 *
12 * Out of the box this bootloader builds for the USB1287, and will fit into 4KB of bootloader space. If
13 * you wish to enlarge this space and/or change the AVR model, you will need to edit the BOOT_START and MCU
14 * values in the accompanying makefile.
15 *
16 * This bootloader is compatible with the open source application AVRDUDE, or Atmel's AVRPROG.
17 *
18 * <table>
19 * <tr>
20 * <td><b>USB Mode:</b></td>
21 * <td>Device</td>
22 * </tr>
23 * <tr>
24 * <td><b>USB Class:</b></td>
25 * <td>Communications Device Class (CDC)</td>
26 * </tr>
27 * <tr>
28 * <td><b>USB Subclass:</b></td>
29 * <td>Abstract Control Model (ACM)</td>
30 * </tr>
31 * <tr>
32 * <td><b>Relevant Standards:</b></td>
33 * <td>USBIF CDC Class Standard</td>
34 * </tr>
35 * <tr>
36 * <td><b>Usable Speeds:</b></td>
37 * <td>Full Speed Mode</td>
38 * </tr>
39 * </table>
40 */