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 Audio Output Device Demo
9 * \section SSec_Compat Demo Compatibility:
11 * The following table indicates what microcontrollers are compatible with this demo.
19 * \section SSec_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>Audio Class</td>
33 * <td><b>USB Subclass:</b></td>
34 * <td>Standard Audio Device</td>
37 * <td><b>Relevant Standards:</b></td>
38 * <td>USBIF Audio Class Specification</td>
39 * <td>USBIF Audio Class Terminal Types Specification</td>
40 * <td>USBIF Audio Data Formats Specification</td>
43 * <td><b>Usable Speeds:</b></td>
44 * <td>Full Speed Mode</td>
48 * \section SSec_Description Project Description:
50 * Audio demonstration application. This gives a simple reference
51 * application for implementing a USB Audio Output device using the
52 * basic USB Audio drivers in all modern OSes (i.e. no special drivers
55 * On start-up the system will automatically enumerate and function
56 * as a USB speaker. Incoming audio will output in 8-bit PWM onto
57 * the timer output (timer 3 for the AT90USBXXX6/7 USB AVRs, timer 1 for
58 * the AT90USBXXX2 controller AVRs) compare channel A for AUDIO_OUT_MONO
59 * mode, on channels A and B for AUDIO_OUT_STEREO and on the board LEDs
60 * for AUDIO_OUT_LEDS mode. Decouple audio outputs with a capacitor and
61 * attach to a speaker to hear the audio.
63 * Under Windows, if a driver request dialogue pops up, select the option
64 * to automatically install the appropriate drivers.
66 * \section SSec_Options Project Options
68 * The following defines can be found in this demo, which can control the demo 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>AUDIO_OUT_STEREO</td>
78 * <td>Makefile CDEFS</td>
79 * <td>When defined, this outputs the audio samples in stereo to the timer output pins of the microcontroller.</td>
82 * <td>AUDIO_OUT_MONO</td>
83 * <td>Makefile CDEFS</td>
84 * <td>When defined, this outputs the audio samples in mono to the timer output pin of the microcontroller.</td>
87 * <td>AUDIO_OUT_LEDS</td>
88 * <td>Makefile CDEFS</td>
89 * <td>When defined, this outputs the audio samples in stereo to the board LEDs.</td>
92 * <td>AUDIO_OUT_PORTC</td>
93 * <td>Makefile CDEFS</td>
94 * <td>When defined, this outputs the audio samples in mono to port C of the microcontroller, for connection to an
98 * <td>AUDIO_SAMPLE_FREQUENCY</td>
99 * <td>Descriptors.h</td>
100 * <td>Gives the audio sample rate per channel for the audio stream, in Hz.</td>