Make XPLAINBridge serial bridge much more reliable for the reception of characters...
[pub/USBasp.git] / LUFA / ManPages / AlternativeStacks.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 /**
8 * \page Page_AlternativeStacks Alternative USB AVR Stacks
9 *
10 * LUFA is not the only stack available for the USB AVRs, although it is perhaps the best (see \ref Page_WhyUseLUFA).
11 * In the interests of completeness and user choice, other known USB AVR stacks are listed here.
12 *
13 * \section Sec_HardwareStacks Hardware USB AVR Stacks
14 * These are the known alternative USB stacks which are designed for and run exclusively on the USB AVR series microcontrollers,
15 * which contain on-chip USB controller hardware for maximum features and speed.
16 *
17 * - <b>Name:</b> Atmel USB AVR Stack (<i>Atmel Inc.</i>) \n
18 * <b>Cost:</b> Free \n
19 * <b>License:</b> Atmel Limited License (see Atmel download for details) \n
20 * <b>Website:</b> http://atmel.com/dyn/products/app_notes.asp?family_id=607#USB \n
21 * <b>Description:</b> This is the official Atmel USB AVR stack, for their 8-bit USB AVR lineup. Each series of
22 * USB AVR is separated into a separate download stack, which is both AVR-GCC and IAR compatible.
23 *
24 * - <b>Name:</b> Dr. Stefan Salewski's AT90USB1287 Stack (<i>Dr. Stefan Salewski</i>) \n
25 * <b>Cost:</b> Free \n
26 * <b>License:</b> GPL \n
27 * <b>Website:</b> http://www.ssalewski.de/AT90USB_firmware.html.en \n
28 * <b>Description:</b> This is a GPL'd library specifically designed for the AT90USB1287, by Dr. Stefan Salewski, a
29 * German Physicist. It compiles for AVR-GCC and can potentially be modified to work on other USB
30 * AVR models.
31 *
32 * - <b>Name:</b> PJRC Teensy Stack (<i>Paul Stoffregen</i>) \n
33 * <b>Cost:</b> Free \n
34 * <b>License:</b> BSD \n
35 * <b>Website:</b> http://www.pjrc.com/teensy/usb_debug_only.html \n
36 * <b>Description:</b> Not so much a complete stack as a collection of USB enabled demos, this library is specifically
37 * designed for the PJRC Teensy line of USB AVRs, and thus may need to be modified for other USB AVR
38 * chips. These minimal code samples shows the inner workings of the USB controller, without all the
39 * abstraction present in most other USB AVR stacks.
40 *
41 * \section Sec_SoftwareStacks Software AVR Stacks
42 * These are the known alternative USB stacks which can run on regular AVR models, lacking dedicated hardware USB controllers
43 * via a bit-banged (emulated) version of the USB protocol. They are limited in their capabilities due to the cycles required
44 * to be dedicated to managing the USB bus, but offer a cheap way to implement USB functionality into a design.
45 *
46 * - <b>Name:</b> AVR309: Software USB (<i>Atmel</i>) \n
47 * <b>Cost:</b> Free \n
48 * <b>License:</b> None Stated \n
49 * <b>Website:</b> http://www.atmel.com/dyn/Products/app_notes.asp?family_id=607 \n
50 * <b>Description:</b> Atmel's official software USB implementation, an Application Note containing work by Igor Cesko. This
51 * is a minimal assembly-only implementation of software USB, providing HID functionality. Less compile
52 * options than V-USB (see below).
53 *
54 * - <b>Name:</b> V-USB (<i>Objective Development</i>) \n
55 * <b>Cost:</b> Free for some uses, see website for licensing \n
56 * <b>License:</b> Dual GPL2/Custom \n
57 * <b>Website:</b> http://www.obdev.at/products/vusb/index.html \n
58 * <b>Description:</b> Well regarded and complete USB 1.1 software stack for several AVR models, implementing Low Speed HID.
59 * Used in many commercial and non-commercial designs, with user-submitted projects available for viewing
60 * on the company's website. Uses C language code mixed with assembly for time-critical sections.
61 */
62