Altered DFU bootloader to use the signature byte constants located in the avr-libc...
[pub/USBasp.git] / Demos / AudioOutput / AudioOutput.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 Audio Output Device Demo
8 *
9 * Audio demonstration application. This gives a simple reference
10 * application for implementing a USB Audio Output device using the
11 * basic USB Audio drivers in all modern OSes (i.e. no special drivers
12 * required).
13 *
14 * On startup the system will automatically enumerate and function
15 * as a USB speaker. Incomming audio will output in 8-bit PWM onto
16 * the timer output (timer 3 for the AT90USBXXX6/7 USB AVRs, timer 1 for
17 * the AT90USBXXX2 controller AVRs) compare channel A for AUDIO_OUT_MONO
18 * mode, on channels A and B for AUDIO_OUT_STEREO and on the board LEDs
19 * for AUDIO_OUT_LEDS mode. Decouple audio outputs with a capacitor and
20 * attach to a speaker to hear the audio.
21 *
22 * Under Windows, if a driver request dialogue pops up, select the option
23 * to automatically install the appropriate drivers.
24 *
25 *
26 * <table>
27 * <tr>
28 * <td><b>USB Mode:</b></td>
29 * <td>Device</td>
30 * </tr>
31 * <tr>
32 * <td><b>USB Class:</b></td>
33 * <td>Audio Class</td>
34 * </tr>
35 * <tr>
36 * <td><b>USB Subclass:</b></td>
37 * <td>Standard Audio Device</td>
38 * </tr>
39 * <tr>
40 * <td><b>Relevant Standards:</b></td>
41 * <td>USBIF Audio Class Specification</td>
42 * <td>USBIF Audio Class Terminal Types Specification</td>
43 * <td>USBIF Audio Data Formats Specification</td>
44 * </tr>
45 * <tr>
46 * <td><b>Usable Speeds:</b></td>
47 * <td>Full Speed Mode</td>
48 * </tr>
49 * </table>
50 */