Added stdio.h stream examples for the virtual CDC UART in the CDC host demos.
[pub/USBasp.git] / Demos / Device / ClassDriver / MassStorageKeyboard / MassStorageKeyboard.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 Combined Mass Storage and Keyboard Device Demo
8 *
9 * \section SSec_Compat Demo Compatibility:
10 *
11 * The following table indicates what microcontrollers are compatible with this demo.
12 *
13 * - AT90USB1287
14 * - AT90USB1286
15 * - AT90USB647
16 * - AT90USB646
17 * - ATMEGA32U6
18 * - ATMEGA32U4
19 * - ATMEGA16U4
20 * - AT90USB162
21 * - AT90USB82
22 *
23 * \section SSec_Info USB Information:
24 *
25 * The following table gives a rundown of the USB utilization of this demo.
26 *
27 * <table>
28 * <tr>
29 * <td><b>USB Mode:</b></td>
30 * <td>Device</td>
31 * </tr>
32 * <tr>
33 * <td><b>USB Classes:</b></td>
34 * <td>Mass Storage Device</td>
35 * <td>Human Interface Device</td>
36 * </tr>
37 * <tr>
38 * <td><b>USB Subclasses:</b></td>
39 * <td>Bulk-Only Transport</td>
40 * <td>Keyboard Subclass</td>
41 * </tr>
42 * <tr>
43 * <td><b>Relevant Standards:</b></td>
44 * <td>USBIF Mass Storage Standard</td>
45 * <td>USB Bulk-Only Transport Standard</td>
46 * <td>SCSI Primary Commands Specification</td>
47 * <td>SCSI Block Commands Specification</td>
48 * <td>USBIF HID Specification, USBIF HID Usage Tables</td>
49 * </tr>
50 * <tr>
51 * <td><b>Usable Speeds:</b></td>
52 * <td>Full Speed Mode</td>
53 * </tr>
54 * </table>
55 *
56 * \section SSec_Description Project Description:
57 *
58 * Combined Mass Storage and Keyboard demonstration application. This gives a
59 * simple reference application for implementing a dual class USB Mass Storage
60 * and USB HID Keyboard device using the basic USB UFI and HID drivers in all
61 * modern OSes (i.e. no special drivers required).
62 *
63 * On start-up the system will automatically enumerate and function as an
64 * external mass storage device (which may be formatted and used in the same
65 * manner as commercial USB Mass Storage devices) and a USB keyboard.
66 *
67 * You will need to format the mass storage drive upon first run of this
68 * demonstration - as the device acts only as a data block transport between
69 * the host and the storage media, it does not matter what file system is used,
70 * as the data interpretation is performed by the host and not the USB device.
71 *
72 * Keys on the USB keyboard can be pressed by moving the board's Joystick.
73 *
74 * The USB control endpoint is managed entirely by the library using endpoint
75 * interrupts, as the INTERRUPT_CONTROL_ENDPOINT option is enabled. This allows for
76 * the host to reset the Mass Storage device state during long transfers without
77 * the need for complicated polling logic.
78 *
79 * \section SSec_Options Project Options
80 *
81 * The following defines can be found in this demo, which can control the demo behaviour when defined, or changed in value.
82 *
83 * <table>
84 * <tr>
85 * <td><b>Define Name:</b></td>
86 * <td><b>Location:</b></td>
87 * <td><b>Description:</b></td>
88 * </tr>
89 * <tr>
90 * <td>TOTAL_LUNS</td>
91 * <td>MassStorage.h</td>
92 * <td>Total number of Logical Units (drives) in the device. The total device capacity is shared equally between each drive
93 * - this can be set to any positive non-zero amount.</td>
94 * </tr>
95 * </table>
96 */