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 /** \page Page_LibraryApps Included Library Applications
9 * The LUFA library ships with several different host and device demos, located in the /Demos/ subdirectory.
10 * If this directory is missing, please re-download the project from the project homepage. Within this directory the demos
11 * are seperated by USB mode (Device, Host, OTG) and further seperated by the use or non-use of the library USB Class drivers.
12 * With one or two exceptions (e.g. proprietary classes such as RNDIS) all the included demos will work across all OSes without
13 * the need for special drivers. One Windows, some demos require the supplied .INF file to be used as the device driver, which
14 * directs the OS to use its inbuilt class drivers for the device.
16 * Also included with the library are three fully functional bootloaders, located in the /Bootloaders/ subdirectory.
17 * The DFU class bootloader is compatible with Atmel's FLIP software or the open source dfu-programmer project, the
18 * CDC class (AVR109 protocol) is compatible with such open source software as AVRDUDE and AVR-OSP, and the TeensyLoader
19 * HID class bootloader is compatible with the software from PJRC (http://www.pjrc.com/teensy/index.html).
21 * User-submitted projects are located in the /Projects/ subdirectory. If you wish to have your LUFA project included,
22 * please email it to the Library author.
24 * \section Sec_AppOverview Overview of Included Library Applications
25 * The following shows the folder structure of the included library applications, including demos, bootloaders and user-submitted
26 * open source projects.
32 * - <b>ClassDriver</b>
33 * - <b>AudioInput</b> - Audio In (microphone) demo, using the library USB Audio Class driver framework
34 * - <b>AudioOutput</b> - Audio Out (speaker) demo, using the library USB Audio Class driver framework
35 * - <b>CDC</b> - Virtual Serial Port demo, using the library USB CDC Class driver framework
36 * - <b>DualCDC</b> - Dual Virtual Serial Port demo, using the library USB CDC Class driver framework
37 * - <b>GenericHID</b> - Generic Human Interface Class demo, using the library USB HID Class driver framework
38 * - <b>Joystick</b> - USB Joystick demo, using the library USB HID Class driver framework
39 * - <b>Keyboard</b> - USB Keyboard demo, using the library USB HID Class driver framework
40 * - <b>KeyboardMouse</b> - Dual Keyboard/Mouse demo, using the library USB HID Class driver framework
41 * - <b>MassStorage</b> - Dual Drive Mass Storage demo, using the library USB Mass Storage Class driver framework
42 * - <b>MIDI</b> - MIDI In demo, using the library USB MIDI-Audio Class driver framework
43 * - <b>Mouse</b> - USB Mouse demo, using the library USB HID driver framework
44 * - <b>RNDISEthernet</b> - RNDIS Ethernet Webserver demo, using the library USB RNDIS driver framework
45 * - <b>USBtoSerial</b> - USB to USART Serial converter demo, using the library USB CDC driver framework
47 * - <b>AudioInput</b> - Audio In (microphone) demo, using the low level LUFA APIs to implement the USB Audio class
48 * - <b>AudioOutput</b> - Audio Out (speaker) demo, using the low level LUFA APIs to implement the USB Audio class
49 * - <b>CDC</b> - Virtual Serial Port demo, using the low level LUFA APIs to implement the USB CDC class
50 * - <b>DualCDC</b> - Dual Virtual Serial Port demo, using the low level LUFA APIs to implement the USB CDC class
51 * - <b>GenericHID</b> - Generic Human Interface Class demo, using the low level LUFA APIs to implement the USB HID class
52 * - <b>Joystick</b> - USB Joystick demo, using the low level LUFA APIs to implement the USB HID class
53 * - <b>Keyboard</b> - USB Keyboard demo, using the low level LUFA APIs to implement the USB HID class
54 * - <b>KeyboardMouse</b> - Dual Keyboard/Mouse demo, using the low level LUFA APIs to implement the USB HID class
55 * - <b>MassStorage</b> - Dual Drive Mass Storage demo, using the low level LUFA APIs to implement the USB Mass Storage class
56 * - <b>MIDI</b> - MIDI In demo, using the low level LUFA APIs to implement the USB MIDI-Audio class
57 * - <b>Mouse</b> - USB Mouse demo, using the low level LUFA APIs to implement the USB HID class
58 * - <b>RNDISEthernet</b> - RNDIS Ethernet Webserver demo, using the low level LUFA APIs to implement the USB RNDIS class
59 * - <b>USBtoSerial</b> - USB to USART Serial converter demo, using the low level LUFA APIs to implement the USB CDC class
61 * - <b>SideShow</b> - Incomplete Windows SideShow demo, using the low level LUFA APIs to implement the USB SideShow class
63 * - <b>ClassDriver</b>
64 * - <b>CDCHost</b> - Virtual Serial Port host demo, using the library USB CDC Class driver framework
65 * - <b>GenericHIDHost</b> - Generic HID host demo, using the library USB HID Class driver framework
66 * - <b>KeyboardHost</b> - USB Keyboard host demo, using the library USB HID Class driver framework
67 * - <b>KeyboardHostWithParser</b> - USB Keyboard host demo with HID Descriptor parser, using the library USB HID Class
69 * - <b>MassStorageHost</b> - Mass Storage host demo, using the library USB Mass Storage Class driver framework
70 * - <b>MouseHost</b> - Mouse host demo, using the library USB HID Class driver framework
71 * - <b>MouseHostWithParser</b> - Mouse host demo with HID Descriptor parser, using the library USB HID Class driver framework
72 * - <b>StillImageHost</b> - Still Image Camera host demo, using the library USB Still Image Class driver framework
74 * - <b>CDCHost</b> - Virtual Serial Port host demo, using the low level LUFA APIs to implement the USB CDC class
75 * - <b>GenericHIDHost</b> - Generic HID host demo, using the low level LUFA APIs to implement the USB HID class
76 * - <b>KeyboardHost</b> - USB Keyboard host demo, using the low level LUFA APIs to implement the USB HID class
77 * - <b>KeyboardHostWithParser</b> - USB Keyboard host demo with HID Descriptor parser, using the low level LUFA APIs to
78 * implement the USB HID class
79 * - <b>MassStorageHost</b> - Mass Storage host demo, using the low level LUFA APIs to implement the USB Mass Storage class
80 * - <b>MouseHost</b> - Mouse host demo, using the low level LUFA APIs to implement the USB HID class
81 * - <b>MouseHostWithParser</b> - Mouse host demo with HID Descriptor parser, using the low level LUFA APIs to implement the
83 * - <b>StillImageHost</b> - Still Image Camera host demo, using the low level LUFA APIs to implement the USB Still Image class
85 * - <b>BluetoothHost</b> - Incomplete Bluetooth host demo, using the low level LUFA APIs to implement the USB Bluetooth class
86 * - <b>Bootloaders</b>
87 * - <b>DFU</b> - DFU Class USB bootloader, compatible with Atmel's FLIP and the open source dfu-programmer software
88 * - <b>CDC</b> - CDC Class USB bootloader, compatible with any AVR910 protocol programming software such as AVRDude
89 * - <b>TeensyHID</b> - HID Class bootloader, compatible with the PJRC TeensyLoader software
91 * - <b>Magstripe</b> - Magnetic Stripe Card Reader project
92 * - <b>MissileLaucher</b> - Toy Missile Launcher Host project