Ensure core library documentation sections use unique IDs.

pull/1469/head
Dean Camera 11 years ago
parent 16037433a2
commit 7941245122

@ -6,14 +6,14 @@
/** \page Page_BuildSystem The LUFA Build System /** \page Page_BuildSystem The LUFA Build System
* *
* \section Sec_BuildSystemOverview Overview of the LUFA Build System * \section Sec_BuildSystem_Overview Overview of the LUFA Build System
* The LUFA build system is an attempt at making a set of re-usable, modular build make files which * The LUFA build system is an attempt at making a set of re-usable, modular build make files which
* can be referenced in a LUFA powered project, to minimize the amount of code required in an * can be referenced in a LUFA powered project, to minimize the amount of code required in an
* application makefile. The system is written in GNU Make, and each module is independent of * application makefile. The system is written in GNU Make, and each module is independent of
* one-another. * one-another.
* *
* For details on the prerequisites needed for Linux and Windows machines to be able to use the LUFA * For details on the prerequisites needed for Linux and Windows machines to be able to use the LUFA
* build system, see \ref Sec_Prerequisites. * build system, see \ref Sec_CompilingApps_Prerequisites.
* *
* To use a LUFA build system module, simply add an include to your project makefile. All user projects * To use a LUFA build system module, simply add an include to your project makefile. All user projects
* should at a minimum include \ref Page_BuildModule_CORE for base functionality: * should at a minimum include \ref Page_BuildModule_CORE for base functionality:
@ -25,13 +25,13 @@
* project's build makefile targets automatically. To call a build target, run <tt>make {TARGET_NAME}</tt> * project's build makefile targets automatically. To call a build target, run <tt>make {TARGET_NAME}</tt>
* from the command line, substituting in the appropriate target name. * from the command line, substituting in the appropriate target name.
* *
* \see \ref Sec_AppMakefileParams for a copy of the sample LUFA project makefile. * \see \ref Sec_ConfiguringApps_AppMakefileParams for a copy of the sample LUFA project makefile.
* *
* Each build module may have one or more mandatory parameters (GNU Make variables) which <i>must</i> * Each build module may have one or more mandatory parameters (GNU Make variables) which <i>must</i>
* be supplied in the project makefile for the module to work, and one or more optional parameters which * be supplied in the project makefile for the module to work, and one or more optional parameters which
* may be defined and which will assume a sensible default if not. * may be defined and which will assume a sensible default if not.
* *
* \section SSec_BuildSystemModules Available Modules * \section SSec_BuildSystem_Modules Available Modules
* *
* The following modules are included in this LUFA release: * The following modules are included in this LUFA release:
* *

@ -14,7 +14,7 @@
* in the user directory where the below compile time tokens may be defined. This allows for an alternative to makefile * in the user directory where the below compile time tokens may be defined. This allows for an alternative to makefile
* defined tokens for configuring the library. * defined tokens for configuring the library.
* *
* \section Sec_SummaryNonUSBTokens Non USB Related Tokens * \section Sec_TokenSummary_NonUSBTokens Non USB Related Tokens
* This section describes compile tokens which affect non-USB sections of the LUFA library. * This section describes compile tokens which affect non-USB sections of the LUFA library.
* *
* \li <b>DISABLE_TERMINAL_CODES</b> - (\ref Group_Terminal) - <i>All Architectures</i> \n * \li <b>DISABLE_TERMINAL_CODES</b> - (\ref Group_Terminal) - <i>All Architectures</i> \n
@ -24,7 +24,7 @@
* the source code at compile time. * the source code at compile time.
* *
* *
* \section Sec_SummaryUSBClassTokens USB Class Driver Related Tokens * \section Sec_TokenSummary_USBClassTokens USB Class Driver Related Tokens
* This section describes compile tokens which affect USB class-specific drivers in the LUFA library. * This section describes compile tokens which affect USB class-specific drivers in the LUFA library.
* *
* \li <b>HID_HOST_BOOT_PROTOCOL_ONLY</b> - (\ref Group_USBClassHIDHost) - <i>All Architectures</i> \n * \li <b>HID_HOST_BOOT_PROTOCOL_ONLY</b> - (\ref Group_USBClassHIDHost) - <i>All Architectures</i> \n
@ -78,7 +78,7 @@
* management tasks. * management tasks.
* *
* *
* \section Sec_SummaryUSBTokens General USB Driver Related Tokens * \section Sec_TokenSummary_USBTokens General USB Driver Related Tokens
* This section describes compile tokens which affect USB driver stack as a whole in the LUFA library. * This section describes compile tokens which affect USB driver stack as a whole in the LUFA library.
* *
* \li <b>ORDERED_EP_CONFIG</b> - (\ref Group_EndpointManagement , \ref Group_PipeManagement) - <i>AVR8, UC3</i> \n * \li <b>ORDERED_EP_CONFIG</b> - (\ref Group_EndpointManagement , \ref Group_PipeManagement) - <i>AVR8, UC3</i> \n
@ -124,7 +124,7 @@
* reducing the compiled program's binary size. * reducing the compiled program's binary size.
* *
* *
* \section Sec_SummaryUSBDeviceTokens USB Device Mode Driver Related Tokens * \section Sec_TokenSummary_USBDeviceTokens USB Device Mode Driver Related Tokens
* This section describes compile tokens which affect USB driver stack of the LUFA library when used in Device mode. * This section describes compile tokens which affect USB driver stack of the LUFA library when used in Device mode.
* *
* \li <b>USE_RAM_DESCRIPTORS</b> - (\ref Group_StdDescriptors) - <i>AVR8 Only</i> \n * \li <b>USE_RAM_DESCRIPTORS</b> - (\ref Group_StdDescriptors) - <i>AVR8 Only</i> \n
@ -188,7 +188,7 @@
* and the code required to manage it may be disabled by passing this token to the library via the -D switch. * and the code required to manage it may be disabled by passing this token to the library via the -D switch.
* *
* *
* \section Sec_SummaryUSBHostTokens USB Host Mode Driver Related Tokens * \section Sec_TokenSummary_USBHostTokens USB Host Mode Driver Related Tokens
* *
* This section describes compile tokens which affect USB driver stack of the LUFA library when used in Host mode. * This section describes compile tokens which affect USB driver stack of the LUFA library when used in Host mode.
* *

@ -8,12 +8,12 @@
* *
* The following details how to compile the included LUFA demos, applications and bootloaders using AVR-GCC. * The following details how to compile the included LUFA demos, applications and bootloaders using AVR-GCC.
* *
* \section Sec_Prerequisites Prerequisites * \section Sec_CompilingApps_Prerequisites Prerequisites
* Before you can compile any of the LUFA library code or demos, you will need a recent distribution of avr-libc (1.6.2+) * Before you can compile any of the LUFA library code or demos, you will need a recent distribution of avr-libc (1.6.2+)
* and the AVR-GCC (4.2+) compiler. A standard "coreutils" package for your system is also required for command line * and the AVR-GCC (4.2+) compiler. A standard "coreutils" package for your system is also required for command line
* compilation of LUFA based applications. * compilation of LUFA based applications.
* *
* \subsection SSec_PreqWindows Windows Prerequisites * \subsection SSec_CompilingApps_PreqWindows Windows Prerequisites
* On Windows, you will need a copy of the latest Atmel Toolchain (<a>http://www.atmel.com/tools/ATMELAVRTOOLCHAINFORWINDOWS.aspx</a>), * On Windows, you will need a copy of the latest Atmel Toolchain (<a>http://www.atmel.com/tools/ATMELAVRTOOLCHAINFORWINDOWS.aspx</a>),
* either downloaded and installed as a standalone package, or installed as part of Atmel Studio. You will need to ensure * either downloaded and installed as a standalone package, or installed as part of Atmel Studio. You will need to ensure
* that the "bin" directory of the toolchain is available in your system's <b>PATH</b> environment variable. * that the "bin" directory of the toolchain is available in your system's <b>PATH</b> environment variable.
@ -23,12 +23,12 @@
* of the MinGW installer (<a>http://www.mingw.org</a>). Once installed, add the "msys\1.0\bin" of the MinGW installation * of the MinGW installer (<a>http://www.mingw.org</a>). Once installed, add the "msys\1.0\bin" of the MinGW installation
* folder is added to your system's <b>PATH</b> environment variable. * folder is added to your system's <b>PATH</b> environment variable.
* *
* \subsection SSec_PreqLinux Linux Prerequisites * \subsection SSec_CompilingApps_PreqLinux Linux Prerequisites
* On Linux systems you will need to install the latest Linux distribution of the standalone Atmel Toolchain from the * On Linux systems you will need to install the latest Linux distribution of the standalone Atmel Toolchain from the
* Atmel website (<a>http://www.atmel.com/tools/ATMELAVRTOOLCHAINFORLINUX.aspx</a>), or use the latest avr-libc and avr-gcc packages * Atmel website (<a>http://www.atmel.com/tools/ATMELAVRTOOLCHAINFORLINUX.aspx</a>), or use the latest avr-libc and avr-gcc packages
* for your chosen distribution's package manager. For full device support, the Atmel standalone Toolchain package is recommended. * for your chosen distribution's package manager. For full device support, the Atmel standalone Toolchain package is recommended.
* *
* \section Sec_Compiling Compiling a LUFA Application * \section Sec_CompilingApps_Compiling Compiling a LUFA Application
* Compiling the LUFA demos, applications and/or bootloaders is very simple. LUFA comes with makefile scripts for * Compiling the LUFA demos, applications and/or bootloaders is very simple. LUFA comes with makefile scripts for
* each individual demo, bootloader and project folder, as well as scripts in the Demos/, Bootloaders/, Projects/ * each individual demo, bootloader and project folder, as well as scripts in the Demos/, Bootloaders/, Projects/
* and the LUFA root directory. Compilation of projects can be started from any of the above directories, with a build * and the LUFA root directory. Compilation of projects can be started from any of the above directories, with a build

@ -18,7 +18,7 @@
* *
* \see \ref Page_BuildSystem for information on the LUFA build system. * \see \ref Page_BuildSystem for information on the LUFA build system.
* *
* \section Sec_AppMakefileParams The Default Application Makefile Template * \section Sec_ConfiguringApps_AppMakefileParams The Default Application Makefile Template
* *
* Below is a copy of the default LUFA application makefile, which can be used as a template for each application. * Below is a copy of the default LUFA application makefile, which can be used as a template for each application.
* *
@ -41,21 +41,21 @@
* *
* These values should be changed to reflect the build hardware. * These values should be changed to reflect the build hardware.
* *
* \subsection SSec_MCU The MCU Parameter * \subsection SSec_ConfiguringApps_MCU The MCU Parameter
* This parameter indicates the target microcontroller model for the compiled application. This should be set to the model of the target * This parameter indicates the target microcontroller model for the compiled application. This should be set to the model of the target
* microcontroller (such as the AT90USB1287, or the ATMEGA32U4), in all lower-case (e.g. "at90usb1287"). Note that not all demos support all the * microcontroller (such as the AT90USB1287, or the ATMEGA32U4), in all lower-case (e.g. "at90usb1287"). Note that not all demos support all the
* microcontroller models and architectures, as they may make use of peripherals or modes only present in some devices. * microcontroller models and architectures, as they may make use of peripherals or modes only present in some devices.
* *
* For supported processor models, see \ref Page_DeviceSupport. * For supported processor models, see \ref Page_DeviceSupport.
* *
* \subsection SSec_ARCH The ARCH Parameter * \subsection SSec_ConfiguringApps_ARCH The ARCH Parameter
* This parameter indicates the target microcontroller architecture the library is to be compiled for. Different microcontroller * This parameter indicates the target microcontroller architecture the library is to be compiled for. Different microcontroller
* architectures require different source files to be compiled into the final binary, and so this option must be set to the correct * architectures require different source files to be compiled into the final binary, and so this option must be set to the correct
* architecture for the selected platform. * architecture for the selected platform.
* *
* For supported processor architectures, see \ref Page_DeviceSupport. * For supported processor architectures, see \ref Page_DeviceSupport.
* *
* \subsection SSec_BOARD The BOARD Parameter * \subsection SSec_ConfiguringApps_BOARD The BOARD Parameter
* This parameter indicates the target board hardware for the compiled application. Some LUFA library drivers are board-specific, * This parameter indicates the target board hardware for the compiled application. Some LUFA library drivers are board-specific,
* such as the LED driver, and the library needs to know the layout of the target board. If you are using one of the board models listed * such as the LED driver, and the library needs to know the layout of the target board. If you are using one of the board models listed
* on the main library page, change this parameter to the board name in all UPPER-case. * on the main library page, change this parameter to the board name in all UPPER-case.
@ -68,37 +68,37 @@
* *
* For boards with built in hardware driver support within the LUFA library, see \ref Page_DeviceSupport. * For boards with built in hardware driver support within the LUFA library, see \ref Page_DeviceSupport.
* *
* \subsection SSec_F_CPU The F_CPU Parameter * \subsection SSec_ConfiguringApps_F_CPU The F_CPU Parameter
* This parameter indicates the target microcontroller's main CPU clock frequency, in Hz. This is used by many libraries (and applications) for * This parameter indicates the target microcontroller's main CPU clock frequency, in Hz. This is used by many libraries (and applications) for
* timing related purposes, and should reflect the actual CPU speed after any prescaling or adjustments are performed. * timing related purposes, and should reflect the actual CPU speed after any prescaling or adjustments are performed.
* *
* \subsection SSec_F_USB The F_USB Parameter * \subsection SSec_ConfiguringApps_F_USB The F_USB Parameter
* This parameter indicates the raw input clock frequency to the USB module within the microcontroller in Hz. This may be very different on some platforms * This parameter indicates the raw input clock frequency to the USB module within the microcontroller in Hz. This may be very different on some platforms
* to the main CPU clock or other peripheral/bus clocks. * to the main CPU clock or other peripheral/bus clocks.
* *
* \subsection SSec_OPTIMIZATION The OPTIMIZATION Parameter * \subsection SSec_ConfiguringApps_OPTIMIZATION The OPTIMIZATION Parameter
* This parameter indicates the level of optimization to use when compiling the application. This will allow you to compile with an optimization level * This parameter indicates the level of optimization to use when compiling the application. This will allow you to compile with an optimization level
* supported by GCC, from <tt>0</tt> (no optimization) to <tt>3</tt> (fastest runtime optimization) or <tt>s</tt> (smallest size). * supported by GCC, from <tt>0</tt> (no optimization) to <tt>3</tt> (fastest runtime optimization) or <tt>s</tt> (smallest size).
* *
* \subsection SSec_TARGET The TARGET Parameter * \subsection SSec_ConfiguringApps_TARGET The TARGET Parameter
* This parameter indicates the application target name, which is used as the base filename for the build binary and debugging files. This will be the * This parameter indicates the application target name, which is used as the base filename for the build binary and debugging files. This will be the
* name of the output files once linked together into the final application, ready to load into the target. * name of the output files once linked together into the final application, ready to load into the target.
* *
* \subsection SSec_SRC The SRC Parameter * \subsection SSec_ConfiguringApps_SRC The SRC Parameter
* This parameter indicates the source files used to compile the application, as a list of C (<tt>*.c</tt>), C++ (<tt>*.cpp</tt>) and Assembly (<tt>*.S</tt>) files. Note that * This parameter indicates the source files used to compile the application, as a list of C (<tt>*.c</tt>), C++ (<tt>*.cpp</tt>) and Assembly (<tt>*.S</tt>) files. Note that
* all assembly files must end in a <b>capital</b> .S extension, as lowercase .s files are reserved for GCC intermediate files. * all assembly files must end in a <b>capital</b> .S extension, as lowercase .s files are reserved for GCC intermediate files.
* *
* \subsection SSec_LUFA_PATH The LUFA_PATH Parameter * \subsection SSec_ConfiguringApps_LUFA_PATH The LUFA_PATH Parameter
* As each LUFA program requires the LUFA library source code to compile correctly, the application must know where the LUFA library is located. This * As each LUFA program requires the LUFA library source code to compile correctly, the application must know where the LUFA library is located. This
* value specifies the path to the LUFA library core. This path may be relative or absolute, however note than even under Windows based systems the * value specifies the path to the LUFA library core. This path may be relative or absolute, however note than even under Windows based systems the
* forward-slash (/) path seperator must be used. * forward-slash (/) path seperator must be used.
* *
* \subsection SSec_CC_FLAGS The CC_FLAGS Parameter * \subsection SSec_ConfiguringApps_CC_FLAGS The CC_FLAGS Parameter
* This parameter lists the compiler flags passed to the C/C++ compiler, the assembler and the linker. These are used as-is directly to GCC and thus * This parameter lists the compiler flags passed to the C/C++ compiler, the assembler and the linker. These are used as-is directly to GCC and thus
* must match GCC's command line options as given in the GCC manual. This variable may be used to define tokens directly on the command line, enable or * must match GCC's command line options as given in the GCC manual. This variable may be used to define tokens directly on the command line, enable or
* disable warnings, adjust the target-specific tuning parameters or other options. * disable warnings, adjust the target-specific tuning parameters or other options.
* *
* \subsection SSec_LD_FLAGS The LD_FLAGS Parameter * \subsection SSec_ConfiguringApps_LD_FLAGS The LD_FLAGS Parameter
* This parameter lists the linker flags passed exclusively to the linker. These are used as-is directly to GCC and thus must match GCC's command line * This parameter lists the linker flags passed exclusively to the linker. These are used as-is directly to GCC and thus must match GCC's command line
* linker options as given in the GCC manual. This variable may be used to create or relocate custom data sections, or enable linker specific behaviors. * linker options as given in the GCC manual. This variable may be used to create or relocate custom data sections, or enable linker specific behaviors.
*/ */

@ -47,7 +47,7 @@
* \defgroup Group_BoardInfo Board Information Driver - LUFA/Drivers/Board/Board.h * \defgroup Group_BoardInfo Board Information Driver - LUFA/Drivers/Board/Board.h
* \brief Board hardware information driver. * \brief Board hardware information driver.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_BoardInfo_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - None * - None
* *

@ -47,11 +47,11 @@
* \defgroup Group_Buttons Buttons Driver - LUFA/Drivers/Board/Buttons.h * \defgroup Group_Buttons Buttons Driver - LUFA/Drivers/Board/Buttons.h
* \brief Digital button board hardware driver. * \brief Digital button board hardware driver.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_Buttons_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - None * - None
* *
* \section Sec_ModDescription Module Description * \section Sec_Buttons_ModDescription Module Description
* Hardware buttons driver. This provides an easy to use driver for the hardware buttons present on many boards. * Hardware buttons driver. This provides an easy to use driver for the hardware buttons present on many boards.
* It provides a way to easily configure and check the status of all the buttons on the board so that appropriate * It provides a way to easily configure and check the status of all the buttons on the board so that appropriate
* actions can be taken. * actions can be taken.
@ -61,7 +61,7 @@
* *
* For possible \c BOARD makefile values, see \ref Group_BoardTypes. * For possible \c BOARD makefile values, see \ref Group_BoardTypes.
* *
* \section Sec_ExampleUsage Example Usage * \section Sec_Buttons_ExampleUsage Example Usage
* The following snippet is an example of how this module may be used within a typical * The following snippet is an example of how this module may be used within a typical
* application. * application.
* *

@ -48,11 +48,11 @@
* \defgroup Group_Dataflash Dataflash Driver - LUFA/Drivers/Board/Dataflash.h * \defgroup Group_Dataflash Dataflash Driver - LUFA/Drivers/Board/Dataflash.h
* \brief Atmel Dataflash storage IC board hardware driver. * \brief Atmel Dataflash storage IC board hardware driver.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_Dataflash_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - None * - None
* *
* \section Sec_ModDescription Module Description * \section Sec_Dataflash_ModDescription Module Description
* Dataflash driver. This module provides an easy to use interface for the Dataflash ICs located on many boards, * Dataflash driver. This module provides an easy to use interface for the Dataflash ICs located on many boards,
* for the storage of large amounts of data into the Dataflash's non-volatile memory. * for the storage of large amounts of data into the Dataflash's non-volatile memory.
* *
@ -61,7 +61,7 @@
* *
* For possible \c BOARD makefile values, see \ref Group_BoardTypes. * For possible \c BOARD makefile values, see \ref Group_BoardTypes.
* *
* \section Sec_ExampleUsage Example Usage * \section Sec_Dataflash_ExampleUsage Example Usage
* The following snippet is an example of how this module may be used within a typical * The following snippet is an example of how this module may be used within a typical
* application. * application.
* *

@ -47,11 +47,11 @@
* \defgroup Group_Joystick Joystick Driver - LUFA/Drivers/Board/Joystick.h * \defgroup Group_Joystick Joystick Driver - LUFA/Drivers/Board/Joystick.h
* \brief Digital joystick board hardware driver. * \brief Digital joystick board hardware driver.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_Joystick_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - None * - None
* *
* \section Sec_ModDescription Module Description * \section Sec_Joystick_ModDescription Module Description
* Hardware Joystick driver. This module provides an easy to use interface to control the hardware digital Joystick * Hardware Joystick driver. This module provides an easy to use interface to control the hardware digital Joystick
* located on many boards. * located on many boards.
* *
@ -60,7 +60,7 @@
* *
* For possible \c BOARD makefile values, see \ref Group_BoardTypes. * For possible \c BOARD makefile values, see \ref Group_BoardTypes.
* *
* \section Sec_ExampleUsage Example Usage * \section Sec_Joystick_ExampleUsage Example Usage
* The following snippet is an example of how this module may be used within a typical * The following snippet is an example of how this module may be used within a typical
* application. * application.
* *

@ -47,11 +47,11 @@
* \defgroup Group_LEDs LEDs Driver - LUFA/Drivers/Board/LEDs.h * \defgroup Group_LEDs LEDs Driver - LUFA/Drivers/Board/LEDs.h
* \brief LED board hardware driver. * \brief LED board hardware driver.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_LEDs_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - None * - None
* *
* \section Sec_ModDescription Module Description * \section Sec_LEDs_ModDescription Module Description
* Hardware LEDs driver. This provides an easy to use driver for the hardware LEDs present on many boards. It * Hardware LEDs driver. This provides an easy to use driver for the hardware LEDs present on many boards. It
* provides an interface to configure, test and change the status of all the board LEDs. * provides an interface to configure, test and change the status of all the board LEDs.
* *
@ -69,7 +69,7 @@
* compatible code for a board with no LEDs by making a board LED driver (see \ref Page_WritingBoardDrivers) * compatible code for a board with no LEDs by making a board LED driver (see \ref Page_WritingBoardDrivers)
* which contains only stub functions and defines no LEDs. * which contains only stub functions and defines no LEDs.
* *
* \section Sec_ExampleUsage Example Usage * \section Sec_LEDs_ExampleUsage Example Usage
* The following snippet is an example of how this module may be used within a typical * The following snippet is an example of how this module may be used within a typical
* application. * application.
* *

@ -38,17 +38,17 @@
* \defgroup Group_Temperature Temperature Sensor Driver - LUFA/Drivers/Board/Temperature.h * \defgroup Group_Temperature Temperature Sensor Driver - LUFA/Drivers/Board/Temperature.h
* \brief NTC Temperature Sensor board hardware driver. * \brief NTC Temperature Sensor board hardware driver.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_Temperature_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/Board/Temperature.c <i>(Makefile source module name: LUFA_SRC_TEMPERATURE)</i> * - LUFA/Drivers/Board/Temperature.c <i>(Makefile source module name: LUFA_SRC_TEMPERATURE)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_Temperature_ModDescription Module Description
* Temperature sensor driver. This provides an easy to use interface for the hardware temperature sensor located * Temperature sensor driver. This provides an easy to use interface for the hardware temperature sensor located
* on many boards. It provides an interface to configure the sensor and appropriate ADC channel, plus read out the * on many boards. It provides an interface to configure the sensor and appropriate ADC channel, plus read out the
* current temperature in degrees C. It is designed for and will only work with the temperature sensor located on the * current temperature in degrees C. It is designed for and will only work with the temperature sensor located on the
* official Atmel USB AVR boards, as each sensor has different characteristics. * official Atmel USB AVR boards, as each sensor has different characteristics.
* *
* \section Sec_ExampleUsage Example Usage * \section Sec_Temperature_ExampleUsage Example Usage
* The following snippet is an example of how this module may be used within a typical * The following snippet is an example of how this module may be used within a typical
* application. * application.
* *

@ -44,11 +44,11 @@
* \defgroup Group_RingBuff Generic Byte Ring Buffer - LUFA/Drivers/Misc/RingBuffer.h * \defgroup Group_RingBuff Generic Byte Ring Buffer - LUFA/Drivers/Misc/RingBuffer.h
* \brief Lightweight ring buffer, for fast insertion/deletion of bytes. * \brief Lightweight ring buffer, for fast insertion/deletion of bytes.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_RingBuff_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - None * - None
* *
* \section Sec_ModDescription Module Description * \section Sec_RingBuff_ModDescription Module Description
* Lightweight ring buffer, for fast insertion/deletion. Multiple buffers can be created of * Lightweight ring buffer, for fast insertion/deletion. Multiple buffers can be created of
* different sizes to suit different needs. * different sizes to suit different needs.
* *
@ -57,7 +57,7 @@
* or deletions) must not overlap. If there is possibility of two or more of the same kind of * or deletions) must not overlap. If there is possibility of two or more of the same kind of
* operating occurring at the same point in time, atomic (mutex) locking should be used. * operating occurring at the same point in time, atomic (mutex) locking should be used.
* *
* \section Sec_ExampleUsage Example Usage * \section Sec_RingBuff_ExampleUsage Example Usage
* The following snippet is an example of how this module may be used within a typical * The following snippet is an example of how this module may be used within a typical
* application. * application.
* *

@ -39,18 +39,18 @@
* \defgroup Group_Terminal ANSI Terminal Escape Codes - LUFA/Drivers/Misc/TerminalCodes.h * \defgroup Group_Terminal ANSI Terminal Escape Codes - LUFA/Drivers/Misc/TerminalCodes.h
* \brief ANSI terminal special escape code macros. * \brief ANSI terminal special escape code macros.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_Terminal_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - None * - None
* *
* \section Sec_ModDescription Module Description * \section Sec_Terminal_ModDescription Module Description
* Escape code macros for ANSI compliant text terminals. * Escape code macros for ANSI compliant text terminals.
* *
* \note If desired, the macro \c DISABLE_TERMINAL_CODES can be defined in the project makefile and passed to the GCC * \note If desired, the macro \c DISABLE_TERMINAL_CODES can be defined in the project makefile and passed to the GCC
* compiler via the -D switch to disable the terminal codes without modifying the source, for use with non * compiler via the -D switch to disable the terminal codes without modifying the source, for use with non
* compatible terminals (any terminal codes then equate to empty strings). * compatible terminals (any terminal codes then equate to empty strings).
* *
* \section Sec_ExampleUsage Example Usage * \section Sec_Terminal_ExampleUsage Example Usage
* The following snippet is an example of how this module may be used within a typical * The following snippet is an example of how this module may be used within a typical
* application. * application.
* *

@ -42,11 +42,11 @@
* \defgroup Group_ADC ADC Driver - LUFA/Drivers/Peripheral/ADC.h * \defgroup Group_ADC ADC Driver - LUFA/Drivers/Peripheral/ADC.h
* \brief Hardware Analogue-to-Digital converter driver. * \brief Hardware Analogue-to-Digital converter driver.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_ADC_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - None * - None
* *
* \section Sec_ModDescription Module Description * \section Sec_ADC_ModDescription Module Description
* Hardware ADC driver. This module provides an easy to use driver for the hardware ADC * Hardware ADC driver. This module provides an easy to use driver for the hardware ADC
* present on many microcontrollers, for the conversion of analogue signals into the * present on many microcontrollers, for the conversion of analogue signals into the
* digital domain. * digital domain.

@ -41,14 +41,14 @@
/** \ingroup Group_ADC /** \ingroup Group_ADC
* \defgroup Group_ADC_AVR8 ADC Peripheral Driver (AVR8) * \defgroup Group_ADC_AVR8 ADC Peripheral Driver (AVR8)
* *
* \section Sec_ModDescription Module Description * \section Sec_ADC_AVR8_ModDescription Module Description
* On-chip Analogue-to-Digital converter (ADC) driver for supported U4, U6 and U7 model AVRs that contain an ADC * On-chip Analogue-to-Digital converter (ADC) driver for supported U4, U6 and U7 model AVRs that contain an ADC
* peripheral internally. * peripheral internally.
* *
* \note This file should not be included directly. It is automatically included as needed by the ADC driver * \note This file should not be included directly. It is automatically included as needed by the ADC driver
* dispatch header located in LUFA/Drivers/Peripheral/ADC.h. * dispatch header located in LUFA/Drivers/Peripheral/ADC.h.
* *
* \section Sec_ExampleUsage Example Usage * \section Sec_ADC_AVR8_ExampleUsage Example Usage
* The following snippet is an example of how this module may be used within a typical * The following snippet is an example of how this module may be used within a typical
* application. * application.
* *

@ -40,7 +40,7 @@
/** \ingroup Group_SPI /** \ingroup Group_SPI
* \defgroup Group_SPI_AVR8 SPI Peripheral Driver (AVR8) * \defgroup Group_SPI_AVR8 SPI Peripheral Driver (AVR8)
* *
* \section Sec_ModDescription Module Description * \section Sec_SPI_AVR8_ModDescription Module Description
* Driver for the hardware SPI port available on most 8-bit AVR microcontroller models. This * Driver for the hardware SPI port available on most 8-bit AVR microcontroller models. This
* module provides an easy to use driver for the setup and transfer of data over the * module provides an easy to use driver for the setup and transfer of data over the
* AVR's SPI port. * AVR's SPI port.
@ -48,7 +48,7 @@
* \note This file should not be included directly. It is automatically included as needed by the SPI driver * \note This file should not be included directly. It is automatically included as needed by the SPI driver
* dispatch header located in LUFA/Drivers/Peripheral/SPI.h. * dispatch header located in LUFA/Drivers/Peripheral/SPI.h.
* *
* \section Sec_ExampleUsage Example Usage * \section Sec_SPI_AVR8_ExampleUsage Example Usage
* The following snippet is an example of how this module may be used within a typical * The following snippet is an example of how this module may be used within a typical
* application. * application.
* *

@ -40,13 +40,13 @@
/** \ingroup Group_SerialSPI /** \ingroup Group_SerialSPI
* \defgroup Group_SerialSPI_AVR8 Master SPI Mode Serial USART Peripheral Driver (AVR8) * \defgroup Group_SerialSPI_AVR8 Master SPI Mode Serial USART Peripheral Driver (AVR8)
* *
* \section Sec_ModDescription Module Description * \section Sec_SerialSPI_AVR8_ModDescription Module Description
* On-chip serial USART driver for the 8-bit AVR8 microcontrollers. * On-chip serial USART driver for the 8-bit AVR8 microcontrollers.
* *
* \note This file should not be included directly. It is automatically included as needed by the SPI Master * \note This file should not be included directly. It is automatically included as needed by the SPI Master
* driver dispatch header located in LUFA/Drivers/Peripheral/SerialSPI.h. * driver dispatch header located in LUFA/Drivers/Peripheral/SerialSPI.h.
* *
* \section Sec_ExampleUsage Example Usage * \section Sec_SerialSPI_AVR8_ExampleUsage Example Usage
* The following snippet is an example of how this module may be used within a typical * The following snippet is an example of how this module may be used within a typical
* application. * application.
* *

@ -40,13 +40,13 @@
/** \ingroup Group_Serial /** \ingroup Group_Serial
* \defgroup Group_Serial_AVR8 Serial USART Peripheral Driver (AVR8) * \defgroup Group_Serial_AVR8 Serial USART Peripheral Driver (AVR8)
* *
* \section Sec_ModDescription Module Description * \section Sec_Serial_AVR8_ModDescription Module Description
* On-chip serial USART driver for the 8-bit AVR microcontrollers. * On-chip serial USART driver for the 8-bit AVR microcontrollers.
* *
* \note This file should not be included directly. It is automatically included as needed by the USART driver * \note This file should not be included directly. It is automatically included as needed by the USART driver
* dispatch header located in LUFA/Drivers/Peripheral/Serial.h. * dispatch header located in LUFA/Drivers/Peripheral/Serial.h.
* *
* \section Sec_ExampleUsage Example Usage * \section Sec_Serial_AVR8_ExampleUsage Example Usage
* The following snippet is an example of how this module may be used within a typical * The following snippet is an example of how this module may be used within a typical
* application. * application.
* *

@ -40,13 +40,13 @@
/** \ingroup Group_TWI /** \ingroup Group_TWI
* \defgroup Group_TWI_AVR8 TWI Peripheral Driver (AVR8) * \defgroup Group_TWI_AVR8 TWI Peripheral Driver (AVR8)
* *
* \section Sec_ModDescription Module Description * \section Sec_TWI_AVR8_ModDescription Module Description
* Master mode TWI driver for the 8-bit AVR microcontrollers which contain a hardware TWI module. * Master mode TWI driver for the 8-bit AVR microcontrollers which contain a hardware TWI module.
* *
* \note This file should not be included directly. It is automatically included as needed by the TWI driver * \note This file should not be included directly. It is automatically included as needed by the TWI driver
* dispatch header located in LUFA/Drivers/Peripheral/TWI.h. * dispatch header located in LUFA/Drivers/Peripheral/TWI.h.
* *
* \section Sec_ExampleUsage Example Usage * \section Sec_TWI_AVR8_ExampleUsage Example Usage
* The following snippet is an example of how this module may be used within a typical * The following snippet is an example of how this module may be used within a typical
* application. * application.
* *

@ -42,11 +42,11 @@
* \defgroup Group_SPI SPI Driver - LUFA/Drivers/Peripheral/SPI.h * \defgroup Group_SPI SPI Driver - LUFA/Drivers/Peripheral/SPI.h
* \brief Hardware Serial Peripheral Interface driver. * \brief Hardware Serial Peripheral Interface driver.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_SPI_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - None * - None
* *
* \section Sec_ModDescription Module Description * \section Sec_SPI_ModDescription Module Description
* Hardware SPI driver. This module provides an easy to use driver for the setup and transfer of data over * Hardware SPI driver. This module provides an easy to use driver for the setup and transfer of data over
* the selected architecture and microcontroller model's SPI port. * the selected architecture and microcontroller model's SPI port.
* *

@ -42,11 +42,11 @@
* \defgroup Group_Serial Serial USART Driver - LUFA/Drivers/Peripheral/Serial.h * \defgroup Group_Serial Serial USART Driver - LUFA/Drivers/Peripheral/Serial.h
* \brief Hardware Serial USART driver. * \brief Hardware Serial USART driver.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_Serial_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/Peripheral/<i>ARCH</i>/Serial_<i>ARCH</i>.c <i>(Makefile source module name: LUFA_SRC_SERIAL)</i> * - LUFA/Drivers/Peripheral/<i>ARCH</i>/Serial_<i>ARCH</i>.c <i>(Makefile source module name: LUFA_SRC_SERIAL)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_Serial_ModDescription Module Description
* Hardware serial USART driver. This module provides an easy to use driver for the setup and transfer * Hardware serial USART driver. This module provides an easy to use driver for the setup and transfer
* of data over the selected architecture and microcontroller model's USART port. * of data over the selected architecture and microcontroller model's USART port.
* *

@ -42,11 +42,11 @@
* \defgroup Group_SerialSPI Master SPI Mode Serial USART Driver - LUFA/Drivers/Peripheral/SerialSPI.h * \defgroup Group_SerialSPI Master SPI Mode Serial USART Driver - LUFA/Drivers/Peripheral/SerialSPI.h
* \brief Hardware SPI Master Mode Serial USART driver. * \brief Hardware SPI Master Mode Serial USART driver.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_SerialSPI_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - None * - None
* *
* \section Sec_ModDescription Module Description * \section Sec_SerialSPI_ModDescription Module Description
* Hardware SPI Master Mode serial USART driver. This module provides an easy to use driver for the setup and transfer * Hardware SPI Master Mode serial USART driver. This module provides an easy to use driver for the setup and transfer
* of data over the selected architecture and microcontroller model's USART port, using a SPI framing format. * of data over the selected architecture and microcontroller model's USART port, using a SPI framing format.
* *

@ -42,11 +42,11 @@
* \defgroup Group_TWI TWI Driver - LUFA/Drivers/Peripheral/TWI.h * \defgroup Group_TWI TWI Driver - LUFA/Drivers/Peripheral/TWI.h
* \brief Hardware Two Wire Interface (I2C) driver. * \brief Hardware Two Wire Interface (I2C) driver.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_TWI_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/Peripheral/<i>ARCH</i>/TWI_<i>ARCH</i>.c <i>(Makefile source module name: LUFA_SRC_TWI)</i> * - LUFA/Drivers/Peripheral/<i>ARCH</i>/TWI_<i>ARCH</i>.c <i>(Makefile source module name: LUFA_SRC_TWI)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_TWI_ModDescription Module Description
* Hardware TWI driver. This module provides an easy to use driver for the setup and transfer of data over * Hardware TWI driver. This module provides an easy to use driver for the setup and transfer of data over
* the selected architecture and microcontroller model's TWI bus port. * the selected architecture and microcontroller model's TWI bus port.
* *

@ -40,7 +40,7 @@
/** \ingroup Group_SPI /** \ingroup Group_SPI
* \defgroup Group_SPI_XMEGA SPI Peripheral Driver (XMEGA) * \defgroup Group_SPI_XMEGA SPI Peripheral Driver (XMEGA)
* *
* \section Sec_ModDescription Module Description * \section Sec_SPI_XMEGA_ModDescription Module Description
* Driver for the hardware SPI port(s) available on XMEGA AVR microcontroller models. This * Driver for the hardware SPI port(s) available on XMEGA AVR microcontroller models. This
* module provides an easy to use driver for the setup and transfer of data over the AVR's * module provides an easy to use driver for the setup and transfer of data over the AVR's
* SPI ports. * SPI ports.

@ -40,13 +40,13 @@
/** \ingroup Group_SerialSPI /** \ingroup Group_SerialSPI
* \defgroup Group_SerialSPI_XMEGA Master SPI Mode Serial USART Peripheral Driver (XMEGA) * \defgroup Group_SerialSPI_XMEGA Master SPI Mode Serial USART Peripheral Driver (XMEGA)
* *
* \section Sec_ModDescription Module Description * \section Sec_SerialSPI_XMEGA_ModDescription Module Description
* On-chip serial USART driver for the XMEGA AVR microcontrollers. * On-chip serial USART driver for the XMEGA AVR microcontrollers.
* *
* \note This file should not be included directly. It is automatically included as needed by the ADC driver * \note This file should not be included directly. It is automatically included as needed by the ADC driver
* dispatch header located in LUFA/Drivers/Peripheral/SerialSPI.h. * dispatch header located in LUFA/Drivers/Peripheral/SerialSPI.h.
* *
* \section Sec_ExampleUsage Example Usage * \section Sec_SerialSPI_XMEGA_ExampleUsage Example Usage
* The following snippet is an example of how this module may be used within a typical * The following snippet is an example of how this module may be used within a typical
* application. * application.
* *

@ -40,13 +40,13 @@
/** \ingroup Group_Serial /** \ingroup Group_Serial
* \defgroup Group_Serial_XMEGA Serial USART Peripheral Driver (XMEGA) * \defgroup Group_Serial_XMEGA Serial USART Peripheral Driver (XMEGA)
* *
* \section Sec_ModDescription Module Description * \section Sec_Serial_XMEGA_ModDescription Module Description
* On-chip serial USART driver for the XMEGA AVR microcontrollers. * On-chip serial USART driver for the XMEGA AVR microcontrollers.
* *
* \note This file should not be included directly. It is automatically included as needed by the USART driver * \note This file should not be included directly. It is automatically included as needed by the USART driver
* dispatch header located in LUFA/Drivers/Peripheral/Serial.h. * dispatch header located in LUFA/Drivers/Peripheral/Serial.h.
* *
* \section Sec_ExampleUsage Example Usage * \section Sec_Serial_XMEGA_ExampleUsage Example Usage
* The following snippet is an example of how this module may be used within a typical * The following snippet is an example of how this module may be used within a typical
* application. * application.
* *

@ -41,11 +41,11 @@
* \defgroup Group_USBClassAOA Android Open Accessory Class Driver * \defgroup Group_USBClassAOA Android Open Accessory Class Driver
* \brief USB class driver for the Google Android Open Accessory class standard. * \brief USB class driver for the Google Android Open Accessory class standard.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_USBClassAOA_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Class/Host/AndroidAccessoryClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Host/AndroidAccessoryClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassAOA_ModDescription Module Description
* Android Open Accessory Class Driver module. This module contains an internal implementation of the USB Android Open Accessory * Android Open Accessory Class Driver module. This module contains an internal implementation of the USB Android Open Accessory
* Class, for Host USB mode. User applications can use this class driver instead of implementing the Android Open Accessory Class * Class, for Host USB mode. User applications can use this class driver instead of implementing the Android Open Accessory Class
* manually via the low-level LUFA APIs. * manually via the low-level LUFA APIs.

@ -41,12 +41,12 @@
* \defgroup Group_USBClassAudio Audio 1.0 Class Driver * \defgroup Group_USBClassAudio Audio 1.0 Class Driver
* \brief USB class driver for the USB-IF Audio 1.0 class standard. * \brief USB class driver for the USB-IF Audio 1.0 class standard.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_USBClassAudio_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Class/Device/AudioClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Device/AudioClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* - LUFA/Drivers/USB/Class/Host/AudioClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Host/AudioClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassAudio_ModDescription Module Description
* Audio 1.0 Class Driver module. This module contains an internal implementation of the USB Audio 1.0 Class, for both * Audio 1.0 Class Driver module. This module contains an internal implementation of the USB Audio 1.0 Class, for both
* Device and Host USB modes. User applications can use this class driver instead of implementing the Audio 1.0 class * Device and Host USB modes. User applications can use this class driver instead of implementing the Audio 1.0 class
* manually via the low-level LUFA APIs. * manually via the low-level LUFA APIs.

@ -41,12 +41,12 @@
* \defgroup Group_USBClassCDC CDC-ACM (Virtual Serial) Class Driver * \defgroup Group_USBClassCDC CDC-ACM (Virtual Serial) Class Driver
* \brief USB class driver for the USB-IF CDC-ACM (Virtual Serial) class standard. * \brief USB class driver for the USB-IF CDC-ACM (Virtual Serial) class standard.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_USBClassCDC_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Class/Device/CDCClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Device/CDCClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* - LUFA/Drivers/USB/Class/Host/CDCClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Host/CDCClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassCDC_ModDescription Module Description
* CDC Class Driver module. This module contains an internal implementation of the USB CDC-ACM class Virtual Serial * CDC Class Driver module. This module contains an internal implementation of the USB CDC-ACM class Virtual Serial
* Ports, for both Device and Host USB modes. User applications can use this class driver instead of implementing the * Ports, for both Device and Host USB modes. User applications can use this class driver instead of implementing the
* CDC class manually via the low-level LUFA APIs. * CDC class manually via the low-level LUFA APIs.

@ -40,7 +40,7 @@
/** \ingroup Group_USBClassAOA /** \ingroup Group_USBClassAOA
* \defgroup Group_USBClassAOACommon Common Class Definitions * \defgroup Group_USBClassAOACommon Common Class Definitions
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassAOACommon_ModDescription Module Description
* Constants, Types and Enum definitions that are common to both Device and Host modes for the USB * Constants, Types and Enum definitions that are common to both Device and Host modes for the USB
* Android Open Accessory Class. * Android Open Accessory Class.
* *

@ -40,7 +40,7 @@
/** \ingroup Group_USBClassAudio /** \ingroup Group_USBClassAudio
* \defgroup Group_USBClassAudioCommon Common Class Definitions * \defgroup Group_USBClassAudioCommon Common Class Definitions
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassAudioCommon_ModDescription Module Description
* Constants, Types and Enum definitions that are common to both Device and Host modes for the USB * Constants, Types and Enum definitions that are common to both Device and Host modes for the USB
* Audio 1.0 Class. * Audio 1.0 Class.
* *

@ -40,7 +40,7 @@
/** \ingroup Group_USBClassCDC /** \ingroup Group_USBClassCDC
* \defgroup Group_USBClassCDCCommon Common Class Definitions * \defgroup Group_USBClassCDCCommon Common Class Definitions
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassCDCCommon_ModDescription Module Description
* Constants, Types and Enum definitions that are common to both Device and Host modes for the USB * Constants, Types and Enum definitions that are common to both Device and Host modes for the USB
* CDC Class. * CDC Class.
* *

@ -40,7 +40,7 @@
/** \ingroup Group_USBClassHID /** \ingroup Group_USBClassHID
* \defgroup Group_USBClassHIDCommon Common Class Definitions * \defgroup Group_USBClassHIDCommon Common Class Definitions
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassHIDCommon_ModDescription Module Description
* Constants, Types and Enum definitions that are common to both Device and Host modes for the USB * Constants, Types and Enum definitions that are common to both Device and Host modes for the USB
* HID Class. * HID Class.
* *

@ -40,11 +40,11 @@
* \defgroup Group_HIDParser HID Report Parser * \defgroup Group_HIDParser HID Report Parser
* \brief USB Human Interface Device (HID) Class report descriptor parser. * \brief USB Human Interface Device (HID) Class report descriptor parser.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_HIDParser_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Class/Host/HIDParser.c <i>(Makefile source module name: LUFA_SRC_USB)</i> * - LUFA/Drivers/USB/Class/Host/HIDParser.c <i>(Makefile source module name: LUFA_SRC_USB)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_HIDParser_ModDescription Module Description
* Human Interface Device (HID) class report descriptor parser. This module implements a parser than is * Human Interface Device (HID) class report descriptor parser. This module implements a parser than is
* capable of processing a complete HID report descriptor, and outputting a flat structure containing the * capable of processing a complete HID report descriptor, and outputting a flat structure containing the
* contents of the report in an a more friendly format. The parsed data may then be further processed and used * contents of the report in an a more friendly format. The parsed data may then be further processed and used

@ -40,7 +40,7 @@
/** \ingroup Group_USBClassMIDI /** \ingroup Group_USBClassMIDI
* \defgroup Group_USBClassMIDICommon Common Class Definitions * \defgroup Group_USBClassMIDICommon Common Class Definitions
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassMIDICommon_ModDescription Module Description
* Constants, Types and Enum definitions that are common to both Device and Host modes for the USB * Constants, Types and Enum definitions that are common to both Device and Host modes for the USB
* MIDI Class. * MIDI Class.
* *

@ -40,7 +40,7 @@
/** \ingroup Group_USBClassMS /** \ingroup Group_USBClassMS
* \defgroup Group_USBClassMSCommon Common Class Definitions * \defgroup Group_USBClassMSCommon Common Class Definitions
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassMSCommon_ModDescription Module Description
* Constants, Types and Enum definitions that are common to both Device and Host modes for the USB * Constants, Types and Enum definitions that are common to both Device and Host modes for the USB
* Mass Storage Class. * Mass Storage Class.
* *

@ -40,7 +40,7 @@
/** \ingroup Group_USBClassPrinter /** \ingroup Group_USBClassPrinter
* \defgroup Group_USBClassPrinterCommon Common Class Definitions * \defgroup Group_USBClassPrinterCommon Common Class Definitions
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassPrinterCommon_ModDescription Module Description
* Constants, Types and Enum definitions that are common to both Device and Host modes for the USB * Constants, Types and Enum definitions that are common to both Device and Host modes for the USB
* Printer Class. * Printer Class.
* *

@ -40,7 +40,7 @@
/** \ingroup Group_USBClassRNDIS /** \ingroup Group_USBClassRNDIS
* \defgroup Group_USBClassRNDISCommon Common Class Definitions * \defgroup Group_USBClassRNDISCommon Common Class Definitions
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassRNDISCommon_ModDescription Module Description
* Constants, Types and Enum definitions that are common to both Device and Host modes for the USB * Constants, Types and Enum definitions that are common to both Device and Host modes for the USB
* RNDIS Class. * RNDIS Class.
* *

@ -40,7 +40,7 @@
/** \ingroup Group_USBClassSI /** \ingroup Group_USBClassSI
* \defgroup Group_USBClassSICommon Common Class Definitions * \defgroup Group_USBClassSICommon Common Class Definitions
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassSICommon_ModDescription Module Description
* Constants, Types and Enum definitions that are common to both Device and Host modes for the USB * Constants, Types and Enum definitions that are common to both Device and Host modes for the USB
* Still Image Class. * Still Image Class.
* *

@ -40,11 +40,11 @@
/** \ingroup Group_USBClassAudio /** \ingroup Group_USBClassAudio
* \defgroup Group_USBClassAudioDevice Audio 1.0 Class Device Mode Driver * \defgroup Group_USBClassAudioDevice Audio 1.0 Class Device Mode Driver
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_USBClassAudioDevice_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Class/Device/AudioClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Device/AudioClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassAudioDevice_ModDescription Module Description
* Device Mode USB Class driver framework interface, for the Audio 1.0 USB Class driver. * Device Mode USB Class driver framework interface, for the Audio 1.0 USB Class driver.
* *
* @{ * @{

@ -40,11 +40,11 @@
/** \ingroup Group_USBClassCDC /** \ingroup Group_USBClassCDC
* \defgroup Group_USBClassCDCDevice CDC Class Device Mode Driver * \defgroup Group_USBClassCDCDevice CDC Class Device Mode Driver
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_USBClassCDCDevice_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Class/Device/CDCClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Device/CDCClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassCDCDevice_ModDescription Module Description
* Device Mode USB Class driver framework interface, for the CDC USB Class driver. * Device Mode USB Class driver framework interface, for the CDC USB Class driver.
* *
* \note There are several major drawbacks to the CDC-ACM standard USB class, however * \note There are several major drawbacks to the CDC-ACM standard USB class, however

@ -40,11 +40,11 @@
/** \ingroup Group_USBClassHID /** \ingroup Group_USBClassHID
* \defgroup Group_USBClassHIDDevice HID Class Device Mode Driver * \defgroup Group_USBClassHIDDevice HID Class Device Mode Driver
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_USBClassHIDDevice_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Class/Device/HIDClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Device/HIDClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassHIDDevice_ModDescription Module Description
* Device Mode USB Class driver framework interface, for the HID USB Class driver. * Device Mode USB Class driver framework interface, for the HID USB Class driver.
* *
* @{ * @{

@ -40,11 +40,11 @@
/** \ingroup Group_USBClassMIDI /** \ingroup Group_USBClassMIDI
* \defgroup Group_USBClassMIDIDevice MIDI Class Device Mode Driver * \defgroup Group_USBClassMIDIDevice MIDI Class Device Mode Driver
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_USBClassMIDIDevice_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Class/Device/MIDIClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Device/MIDIClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassMIDIDevice_ModDescription Module Description
* Device Mode USB Class driver framework interface, for the MIDI USB Class driver. * Device Mode USB Class driver framework interface, for the MIDI USB Class driver.
* *
* @{ * @{

@ -40,11 +40,11 @@
/** \ingroup Group_USBClassMS /** \ingroup Group_USBClassMS
* \defgroup Group_USBClassMSDevice Mass Storage Class Device Mode Driver * \defgroup Group_USBClassMSDevice Mass Storage Class Device Mode Driver
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_USBClassMSDevice_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Class/Device/MassStorageClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Device/MassStorageClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassMSDevice_ModDescription Module Description
* Device Mode USB Class driver framework interface, for the Mass Storage USB Class driver. * Device Mode USB Class driver framework interface, for the Mass Storage USB Class driver.
* *
* @{ * @{

@ -40,11 +40,11 @@
/** \ingroup Group_USBClassPrinter /** \ingroup Group_USBClassPrinter
* \defgroup Group_USBClassPrinterDevice Printer Class Device Mode Driver * \defgroup Group_USBClassPrinterDevice Printer Class Device Mode Driver
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_USBClassPrinterDevice_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Class/Device/PrinterClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Device/PrinterClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassPrinterDevice_ModDescription Module Description
* Device Mode USB Class driver framework interface, for the Printer USB Class driver. * Device Mode USB Class driver framework interface, for the Printer USB Class driver.
* *
* @{ * @{

@ -40,11 +40,11 @@
/** \ingroup Group_USBClassRNDIS /** \ingroup Group_USBClassRNDIS
* \defgroup Group_USBClassRNDISDevice RNDIS Class Device Mode Driver * \defgroup Group_USBClassRNDISDevice RNDIS Class Device Mode Driver
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_USBClassRNDISDevice_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Class/Device/RNDISClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Device/RNDISClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassRNDISDevice_ModDescription Module Description
* Device Mode USB Class driver framework interface, for the RNDIS USB Class driver. * Device Mode USB Class driver framework interface, for the RNDIS USB Class driver.
* *
* @{ * @{

@ -41,13 +41,13 @@
* \defgroup Group_USBClassHID HID Class Driver * \defgroup Group_USBClassHID HID Class Driver
* \brief USB class driver for the USB-IF Human Interface Device (HID) class standard. * \brief USB class driver for the USB-IF Human Interface Device (HID) class standard.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_USBClassHID_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Class/Device/HIDClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Device/HIDClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* - LUFA/Drivers/USB/Class/Host/HIDClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Host/HIDClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* - LUFA/Drivers/USB/Class/Host/HIDParser.c <i>(Makefile source module name: LUFA_SRC_USB)</i> * - LUFA/Drivers/USB/Class/Host/HIDParser.c <i>(Makefile source module name: LUFA_SRC_USB)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassHID_ModDescription Module Description
* HID Class Driver module. This module contains an internal implementation of the USB HID Class, for both Device * HID Class Driver module. This module contains an internal implementation of the USB HID Class, for both Device
* and Host USB modes. User applications can use this class driver instead of implementing the HID class manually * and Host USB modes. User applications can use this class driver instead of implementing the HID class manually
* via the low-level LUFA APIs. * via the low-level LUFA APIs.

@ -40,11 +40,11 @@
/** \ingroup Group_USBClassAOA /** \ingroup Group_USBClassAOA
* \defgroup Group_USBClassAndroidAccessoryHost Android Open Accessory Class Host Mode Driver * \defgroup Group_USBClassAndroidAccessoryHost Android Open Accessory Class Host Mode Driver
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_USBClassAndroidAccessoryHost_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Class/Host/AndroidAccessoryClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Host/AndroidAccessoryClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassAndroidAccessoryHost_ModDescription Module Description
* Host Mode USB Class driver framework interface, for the Android Open Accessory USB Class driver. * Host Mode USB Class driver framework interface, for the Android Open Accessory USB Class driver.
* *
* @{ * @{

@ -40,11 +40,11 @@
/** \ingroup Group_USBClassAudio /** \ingroup Group_USBClassAudio
* \defgroup Group_USBClassAudioHost Audio 1.0 Class Host Mode Driver * \defgroup Group_USBClassAudioHost Audio 1.0 Class Host Mode Driver
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_USBClassAudioHost_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Class/Host/AudioClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Host/AudioClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassAudioHost_ModDescription Module Description
* Host Mode USB Class driver framework interface, for the Audio 1.0 USB Class driver. * Host Mode USB Class driver framework interface, for the Audio 1.0 USB Class driver.
* *
* @{ * @{

@ -40,11 +40,11 @@
/** \ingroup Group_USBClassCDC /** \ingroup Group_USBClassCDC
* \defgroup Group_USBClassCDCHost CDC Class Host Mode Driver * \defgroup Group_USBClassCDCHost CDC Class Host Mode Driver
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_USBClassCDCHost_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Class/Host/CDCClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Host/CDCClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassCDCHost_ModDescription Module Description
* Host Mode USB Class driver framework interface, for the CDC USB Class driver. * Host Mode USB Class driver framework interface, for the CDC USB Class driver.
* *
* @{ * @{

@ -40,11 +40,11 @@
/** \ingroup Group_USBClassHID /** \ingroup Group_USBClassHID
* \defgroup Group_USBClassHIDHost HID Class Host Mode Driver * \defgroup Group_USBClassHIDHost HID Class Host Mode Driver
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_USBClassHIDHost_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Class/Host/HIDClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Host/HIDClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassHIDHost_ModDescription Module Description
* Host Mode USB Class driver framework interface, for the HID USB Class driver. * Host Mode USB Class driver framework interface, for the HID USB Class driver.
* *
* @{ * @{

@ -40,11 +40,11 @@
/** \ingroup Group_USBClassMIDI /** \ingroup Group_USBClassMIDI
* \defgroup Group_USBClassMIDIHost MIDI Class Host Mode Driver * \defgroup Group_USBClassMIDIHost MIDI Class Host Mode Driver
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_USBClassMIDIHost_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Class/Host/MIDIClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Host/MIDIClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassMIDIHost_ModDescription Module Description
* Host Mode USB Class driver framework interface, for the MIDI USB Class driver. * Host Mode USB Class driver framework interface, for the MIDI USB Class driver.
* *
* @{ * @{

@ -40,11 +40,11 @@
/** \ingroup Group_USBClassMS /** \ingroup Group_USBClassMS
* \defgroup Group_USBClassMassStorageHost Mass Storage Class Host Mode Driver * \defgroup Group_USBClassMassStorageHost Mass Storage Class Host Mode Driver
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_USBClassMassStorageHost_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Class/Host/MassStorageClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Host/MassStorageClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassMassStorageHost_ModDescription Module Description
* Host Mode USB Class driver framework interface, for the Mass Storage USB Class driver. * Host Mode USB Class driver framework interface, for the Mass Storage USB Class driver.
* *
* @{ * @{

@ -40,11 +40,11 @@
/** \ingroup Group_USBClassPrinter /** \ingroup Group_USBClassPrinter
* \defgroup Group_USBClassPrinterHost Printer Class Host Mode Driver * \defgroup Group_USBClassPrinterHost Printer Class Host Mode Driver
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_USBClassPrinterHost_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Class/Host/PrinterClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Host/PrinterClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassPrinterHost_ModDescription Module Description
* Host Mode USB Class driver framework interface, for the Printer USB Class driver. * Host Mode USB Class driver framework interface, for the Printer USB Class driver.
* *
* @{ * @{

@ -40,11 +40,11 @@
/** \ingroup Group_USBClassRNDIS /** \ingroup Group_USBClassRNDIS
* \defgroup Group_USBClassRNDISHost RNDIS Class Host Mode Driver * \defgroup Group_USBClassRNDISHost RNDIS Class Host Mode Driver
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_USBClassRNDISHost_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Class/Host/RNDISClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Host/RNDISClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassRNDISHost_ModDescription Module Description
* Host Mode USB Class driver framework interface, for the Microsoft RNDIS Ethernet * Host Mode USB Class driver framework interface, for the Microsoft RNDIS Ethernet
* USB Class driver. * USB Class driver.
* *

@ -40,11 +40,11 @@
/** \ingroup Group_USBClassSI /** \ingroup Group_USBClassSI
* \defgroup Group_USBClassStillImageHost Still Image Class Host Mode Driver * \defgroup Group_USBClassStillImageHost Still Image Class Host Mode Driver
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_USBClassStillImageHost_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Class/Host/StillImageClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Host/StillImageClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassStillImageHost_ModDescription Module Description
* Host Mode USB Class driver framework interface, for the Still Image USB Class driver. * Host Mode USB Class driver framework interface, for the Still Image USB Class driver.
* *
* @{ * @{

@ -41,12 +41,12 @@
* \defgroup Group_USBClassMIDI MIDI Class Driver * \defgroup Group_USBClassMIDI MIDI Class Driver
* \brief USB class driver for the USB-IF MIDI class standard. * \brief USB class driver for the USB-IF MIDI class standard.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_USBClassMIDI_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Class/Device/MIDIClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Device/MIDIClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* - LUFA/Drivers/USB/Class/Host/MIDIClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Host/MIDIClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassMIDI_ModDescription Module Description
* MIDI Class Driver module. This module contains an internal implementation of the USB MIDI Class, for both Device * MIDI Class Driver module. This module contains an internal implementation of the USB MIDI Class, for both Device
* and Host USB modes. User applications can use this class driver instead of implementing the MIDI class manually * and Host USB modes. User applications can use this class driver instead of implementing the MIDI class manually
* via the low-level LUFA APIs. * via the low-level LUFA APIs.

@ -41,12 +41,12 @@
* \defgroup Group_USBClassMS Mass Storage Class Driver * \defgroup Group_USBClassMS Mass Storage Class Driver
* \brief USB class driver for the USB-IF Bulk-Only Transport Mass Storage class standard. * \brief USB class driver for the USB-IF Bulk-Only Transport Mass Storage class standard.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_USBClassMS_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Class/Device/MassStorageClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Device/MassStorageClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* - LUFA/Drivers/USB/Class/Host/MassStorageClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Host/MassStorageClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassMS_ModDescription Module Description
* Mass Storage Class Driver module. This module contains an internal implementation of the USB Mass Storage Class, for both * Mass Storage Class Driver module. This module contains an internal implementation of the USB Mass Storage Class, for both
* Device and Host USB modes. User applications can use this class driver instead of implementing the Mass Storage class * Device and Host USB modes. User applications can use this class driver instead of implementing the Mass Storage class
* manually via the low-level LUFA APIs. * manually via the low-level LUFA APIs.

@ -41,12 +41,12 @@
* \defgroup Group_USBClassPrinter Printer Class Driver * \defgroup Group_USBClassPrinter Printer Class Driver
* \brief USB class driver for the USB-IF Printer class standard. * \brief USB class driver for the USB-IF Printer class standard.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_USBClassPrinter_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Class/Host/PrinterClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Host/PrinterClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* - LUFA/Drivers/USB/Class/Host/PrinterClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Host/PrinterClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassPrinter_ModDescription Module Description
* Printer Class Driver module. This module contains an internal implementation of the USB Printer Class, for the base * Printer Class Driver module. This module contains an internal implementation of the USB Printer Class, for the base
* USB Printer transport layer for USB Host mode only. Note that printers are free to implement whatever printer language * USB Printer transport layer for USB Host mode only. Note that printers are free to implement whatever printer language
* they choose on top of this (e.g. Postscript), and so this driver exposes low level data transport functions only rather * they choose on top of this (e.g. Postscript), and so this driver exposes low level data transport functions only rather

@ -41,12 +41,12 @@
* \defgroup Group_USBClassRNDIS RNDIS (Networking) Class Driver * \defgroup Group_USBClassRNDIS RNDIS (Networking) Class Driver
* \brief USB class driver for the Microsoft Remote Network Driver Interface Specification (RNDIS) class standard. * \brief USB class driver for the Microsoft Remote Network Driver Interface Specification (RNDIS) class standard.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_USBClassRNDIS_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Class/Device/RNDISClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Device/RNDISClassDevice.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* - LUFA/Drivers/USB/Class/Host/RNDISClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Host/RNDISClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassRNDIS_ModDescription Module Description
* RNDIS Class Driver module. This module contains an internal implementation of the Microsoft USB RNDIS Networking * RNDIS Class Driver module. This module contains an internal implementation of the Microsoft USB RNDIS Networking
* Class, for both Device and Host USB modes. User applications can use this class driver instead of implementing the * Class, for both Device and Host USB modes. User applications can use this class driver instead of implementing the
* RNDIS class manually via the low-level LUFA APIs. * RNDIS class manually via the low-level LUFA APIs.

@ -41,11 +41,11 @@
* \defgroup Group_USBClassSI Still Image Class Driver * \defgroup Group_USBClassSI Still Image Class Driver
* \brief USB class driver for the USB-IF Still Image (PIMA-compliant) class standard. * \brief USB class driver for the USB-IF Still Image (PIMA-compliant) class standard.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_USBClassSI_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Class/Host/StillImageClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i> * - LUFA/Drivers/USB/Class/Host/StillImageClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_USBClassSI_ModDescription Module Description
* Still Image Class Driver module. This module contains an internal implementation of the USB Still Image Class, * Still Image Class Driver module. This module contains an internal implementation of the USB Still Image Class,
* for USB Host mode only. User applications can use this class driver instead of implementing the Still Image class * for USB Host mode only. User applications can use this class driver instead of implementing the Still Image class
* manually via the low-level LUFA APIs. * manually via the low-level LUFA APIs.

@ -41,7 +41,7 @@
* *
* \brief Core driver for the microcontroller hardware USB module * \brief Core driver for the microcontroller hardware USB module
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_USB_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Drivers/USB/Core/ConfigDescriptors.c <i>(Makefile source module name: LUFA_SRC_USB)</i> * - LUFA/Drivers/USB/Core/ConfigDescriptors.c <i>(Makefile source module name: LUFA_SRC_USB)</i>
* - LUFA/Drivers/USB/Core/DeviceStandardReq.c <i>(Makefile source module name: LUFA_SRC_USB)</i> * - LUFA/Drivers/USB/Core/DeviceStandardReq.c <i>(Makefile source module name: LUFA_SRC_USB)</i>
@ -58,7 +58,7 @@
* - LUFA/Drivers/USB/Core/<i>ARCH</i>/USBInterrupt_<i>ARCH</i>.c <i>(Makefile source module name: LUFA_SRC_USB)</i> * - LUFA/Drivers/USB/Core/<i>ARCH</i>/USBInterrupt_<i>ARCH</i>.c <i>(Makefile source module name: LUFA_SRC_USB)</i>
* - LUFA/Drivers/USB/Class/Common/HIDParser.c <i>(Makefile source module name: LUFA_SRC_USB)</i> * - LUFA/Drivers/USB/Class/Common/HIDParser.c <i>(Makefile source module name: LUFA_SRC_USB)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_USB_ModDescription Module Description
* Driver and framework for the USB controller of the selected architecture and microcontroller model. This module * Driver and framework for the USB controller of the selected architecture and microcontroller model. This module
* consists of many submodules, and is designed to provide an easy way to configure and control USB host, device * consists of many submodules, and is designed to provide an easy way to configure and control USB host, device
* or OTG mode USB applications. * or OTG mode USB applications.
@ -143,13 +143,13 @@
* </table> * </table>
* *
* *
* \section Sec_UsingClassDrivers Using the Class Drivers * \section Sec_USB_UsingClassDrivers Using the Class Drivers
* To make the Class drivers easy to integrate into a user application, they all implement a standardized * To make the Class drivers easy to integrate into a user application, they all implement a standardized
* design with similarly named/used function, enums, defines and types. The two different modes are implemented * design with similarly named/used function, enums, defines and types. The two different modes are implemented
* slightly differently, and thus will be explained separately. For information on a specific class driver, read * slightly differently, and thus will be explained separately. For information on a specific class driver, read
* the class driver's module documentation. * the class driver's module documentation.
* *
* \subsection Sec_ClassDriverDevice Device Mode Class Drivers * \subsection Sec_USB_ClassDriverDevice Device Mode Class Drivers
* Implementing a Device Mode Class Driver in a user application requires a number of steps to be followed. Firstly, * Implementing a Device Mode Class Driver in a user application requires a number of steps to be followed. Firstly,
* the module configuration and state structure must be added to the project source. These structures are named in a * the module configuration and state structure must be added to the project source. These structures are named in a
* similar manner between classes, that of <tt>USB_ClassInfo_<i>{Class Name}</i>_Device_t</tt>, and are used to hold the * similar manner between classes, that of <tt>USB_ClassInfo_<i>{Class Name}</i>_Device_t</tt>, and are used to hold the
@ -249,7 +249,7 @@
* read and write routines. See each driver's individual documentation for more information on the * read and write routines. See each driver's individual documentation for more information on the
* class-specific functions. * class-specific functions.
* *
* \subsection Sec_ClassDriverHost Host Mode Class Drivers * \subsection Sec_USB_ClassDriverHost Host Mode Class Drivers
* Implementing a Host Mode Class Driver in a user application requires a number of steps to be followed. Firstly, * Implementing a Host Mode Class Driver in a user application requires a number of steps to be followed. Firstly,
* the module configuration and state structure must be added to the project source. These structures are named in a * the module configuration and state structure must be added to the project source. These structures are named in a
* similar manner between classes, that of <tt>USB_ClassInfo_<b>{Class Name}</b>_Host_t</tt>, and are used to hold the * similar manner between classes, that of <tt>USB_ClassInfo_<b>{Class Name}</b>_Host_t</tt>, and are used to hold the

@ -44,12 +44,12 @@
/** \defgroup Group_PlatformDrivers System Platform Drivers - LUFA/Platform/Platform.h /** \defgroup Group_PlatformDrivers System Platform Drivers - LUFA/Platform/Platform.h
* \brief Hardware platform drivers. * \brief Hardware platform drivers.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_PlatformDrivers_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - <b>UC3 Architecture Only:</b> LUFA/Platform/UC3/InterruptManagement.c <i>(Makefile source module name: LUFA_SRC_PLATFORM)</i> * - <b>UC3 Architecture Only:</b> LUFA/Platform/UC3/InterruptManagement.c <i>(Makefile source module name: LUFA_SRC_PLATFORM)</i>
* - <b>UC3 Architecture Only:</b> LUFA/Platform/UC3/Exception.S <i>(Makefile source module name: LUFA_SRC_PLATFORM)</i> * - <b>UC3 Architecture Only:</b> LUFA/Platform/UC3/Exception.S <i>(Makefile source module name: LUFA_SRC_PLATFORM)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_PlatformDrivers_ModDescription Module Description
* Device-specific hardware platform drivers, for low level hardware configuration and management. The platform * Device-specific hardware platform drivers, for low level hardware configuration and management. The platform
* drivers are a set of drivers which are designed to provide a high level management layer for the various low level * drivers are a set of drivers which are designed to provide a high level management layer for the various low level
* system functions such as clock control and interrupt management. * system functions such as clock control and interrupt management.

@ -39,11 +39,11 @@
* \defgroup Group_PlatformDrivers_UC3Clocks Clock Management Driver - LUFA/Platform/UC3/ClockManagement.h * \defgroup Group_PlatformDrivers_UC3Clocks Clock Management Driver - LUFA/Platform/UC3/ClockManagement.h
* \brief Module Clock Driver for the AVR32 UC3 microcontrollers. * \brief Module Clock Driver for the AVR32 UC3 microcontrollers.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_PlatformDrivers_UC3Clocks_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - None * - None
* *
* \section Sec_ModDescription Module Description * \section Sec_PlatformDrivers_UC3Clocks_ModDescription Module Description
* Clock management driver for the AVR32 UC3 microcontrollers. This driver allows for the configuration * Clock management driver for the AVR32 UC3 microcontrollers. This driver allows for the configuration
* of the various clocks within the device to clock the various peripherals. * of the various clocks within the device to clock the various peripherals.
* *

@ -39,12 +39,12 @@
* \defgroup Group_PlatformDrivers_UC3Interrupts Interrupt Controller Driver - LUFA/Platform/UC3/InterruptManagement.h * \defgroup Group_PlatformDrivers_UC3Interrupts Interrupt Controller Driver - LUFA/Platform/UC3/InterruptManagement.h
* \brief Interrupt Controller Driver for the AVR32 UC3 microcontrollers. * \brief Interrupt Controller Driver for the AVR32 UC3 microcontrollers.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_PlatformDrivers_UC3Interrupts_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - LUFA/Platform/UC3/InterruptManagement.c <i>(Makefile source module name: LUFA_SRC_PLATFORM)</i> * - LUFA/Platform/UC3/InterruptManagement.c <i>(Makefile source module name: LUFA_SRC_PLATFORM)</i>
* - LUFA/Platform/UC3/Exception.S <i>(Makefile source module name: LUFA_SRC_PLATFORM)</i> * - LUFA/Platform/UC3/Exception.S <i>(Makefile source module name: LUFA_SRC_PLATFORM)</i>
* *
* \section Sec_ModDescription Module Description * \section Sec_PlatformDrivers_UC3Interrupts_ModDescription Module Description
* Interrupt controller driver for the AVR32 UC3 microcontrollers, for the configuration of interrupt * Interrupt controller driver for the AVR32 UC3 microcontrollers, for the configuration of interrupt
* handlers within the device. * handlers within the device.
* *

@ -39,11 +39,11 @@
* \defgroup Group_PlatformDrivers_XMEGAClocks Clock Management Driver - LUFA/Platform/XMEGA/ClockManagement.h * \defgroup Group_PlatformDrivers_XMEGAClocks Clock Management Driver - LUFA/Platform/XMEGA/ClockManagement.h
* \brief Module Clock Driver for the AVR USB XMEGA microcontrollers. * \brief Module Clock Driver for the AVR USB XMEGA microcontrollers.
* *
* \section Sec_Dependencies Module Source Dependencies * \section Sec_PlatformDrivers_XMEGAClocks_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module: * The following files must be built with any user project that uses this module:
* - None * - None
* *
* \section Sec_ModDescription Module Description * \section Sec_PlatformDrivers_XMEGAClocks_ModDescription Module Description
* Clock management driver for the AVR USB XMEGA microcontrollers. This driver allows for the configuration * Clock management driver for the AVR USB XMEGA microcontrollers. This driver allows for the configuration
* of the various clocks within the device to clock the various peripherals. * of the various clocks within the device to clock the various peripherals.
* *

Loading…
Cancel
Save