Altered DFU bootloader to use the signature byte constants located in the avr-libc...
[pub/USBasp.git] / Demos / KeyboardHostViaInt / KeyboardHostViaInt.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 Keyboard Host Demo
8 *
9 * Keyboard host demonstration application, using pipe interrupts. This gives
10 * a simple reference application for implementing a USB Keyboard host utilizing
11 * the LUFA pipe interrupt system, for USB keyboards using the standard Keyboard
12 * HID profile.
13 *
14 * Pressed alpha-numeric, enter or space key is transmitted through the serial
15 * USART at serial settings 9600, 8, N, 1.
16 *
17 * This uses a naive method where the keyboard is set to Boot Protocol mode, so
18 * that the report structure is fixed and known. A better implementation
19 * uses the HID report parser for correct report data processing across
20 * all compatable mice with advanced characteristics, as shown in the
21 * KeyboardHostWithParser demo application.
22 *
23 * Currently only single interface keyboards are supported.
24 *
25 * <table>
26 * <tr>
27 * <td><b>USB Mode:</b></td>
28 * <td>Host</td>
29 * </tr>
30 * <tr>
31 * <td><b>USB Class:</b></td>
32 * <td>Human Interface Device (HID)</td>
33 * </tr>
34 * <tr>
35 * <td><b>USB Subclass:</b></td>
36 * <td>N/A</td>
37 * </tr>
38 * <tr>
39 * <td><b>Relevant Standards:</b></td>
40 * <td>USBIF HID Specification, USBIF HID Usage Tables</td>
41 * </tr>
42 * <tr>
43 * <td><b>Usable Speeds:</b></td>
44 * <td>Low Speed Mode, Full Speed Mode</td>
45 * </tr>
46 * </table>
47 */