From 588886878e0fe948417123b57c108a1bd7992f85 Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Fri, 13 Nov 2009 13:24:04 +0000 Subject: Corrections, improvements and additions to the incomplete RNDISHost demo. Change device demos which use the joystick to use the natural UP, DOWN, LEFT, RIGHT ordering in all demos when checking the joystick's position. --- LUFA/Drivers/USB/LowLevel/OTG.h | 2 +- LUFA/Drivers/USB/USB.h | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) (limited to 'LUFA/Drivers') diff --git a/LUFA/Drivers/USB/LowLevel/OTG.h b/LUFA/Drivers/USB/LowLevel/OTG.h index a5ad6bad7..942079904 100644 --- a/LUFA/Drivers/USB/LowLevel/OTG.h +++ b/LUFA/Drivers/USB/LowLevel/OTG.h @@ -29,7 +29,7 @@ */ /** \ingroup Group_USB - * @defgroup Group_OTGManagement USB On The Go (OTG) Management + * @defgroup Group_OTG USB On The Go (OTG) Management * * This module contains macros for embedded USB hosts with dual role On The Go capabilities, for managing role * exchange. OTG is a way for two USB dual role devices to talk to one another directly without fixed device/host diff --git a/LUFA/Drivers/USB/USB.h b/LUFA/Drivers/USB/USB.h index b9b506fb1..223967008 100644 --- a/LUFA/Drivers/USB/USB.h +++ b/LUFA/Drivers/USB/USB.h @@ -54,6 +54,15 @@ * Driver and framework for the USB controller hardware on the USB series of AVR microcontrollers. This module * consists of many submodules, and is designed to provide an easy way to configure and control USB host, device * or OTG mode USB applications. + * + * The USB stack requires the sole control over the USB controller in the microcontroller only; i.e. it does not + * require any additional AVR timers, etc. to operate. This ensures that the USB stack requires as few resources + * as possible. + * + * The USB stack can be used in Device Mode for connections to USB Hosts (see \ref Group_Device), in Host mode for + * hosting of other USB devices (see \ref Group_Host), or as a dual role device which can either act as a USB host + * or device depending on what peripheral is connected (see \ref Group_OTG). Both modes also require a common set + * of USB management functions found \ref Group_USBManagement. */ /** \ingroup Group_USB -- cgit v1.2.3