aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Core/Events.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-08-28 20:09:14 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-08-28 20:09:14 +0000
commit44aea22949c40e76b8be6cb56acbd2b155043e6b (patch)
treece9537d7baf57caeb8c871b7d91abd0fa7693f6b /LUFA/Drivers/USB/Core/Events.h
parente225de8a8372fa2cc5dc1d2d782cf7af0f3c0f08 (diff)
downloadlufa-44aea22949c40e76b8be6cb56acbd2b155043e6b.tar.gz
lufa-44aea22949c40e76b8be6cb56acbd2b155043e6b.tar.bz2
lufa-44aea22949c40e76b8be6cb56acbd2b155043e6b.zip
Fixed logic hole breaking USB operations on a USB controller with only one supported USB mode and no USB_DEVICE_ONLY or USB_HOST_ONLY configuration token set.
Diffstat (limited to 'LUFA/Drivers/USB/Core/Events.h')
-rw-r--r--LUFA/Drivers/USB/Core/Events.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/LUFA/Drivers/USB/Core/Events.h b/LUFA/Drivers/USB/Core/Events.h
index f468b7e65..192869bf8 100644
--- a/LUFA/Drivers/USB/Core/Events.h
+++ b/LUFA/Drivers/USB/Core/Events.h
@@ -156,6 +156,12 @@
* This event is time-critical; exceeding OS-specific delays within this event handler (typically of around
* 1 second) when a transaction is waiting to be processed by the device will prevent break communications
* and cause the host to reset the USB bus.
+ *
+ * \note This event only exists on microcontrollers that supports USB host mode.
+ * \n\n
+ *
+ * \note This event does not exist if the \c USB_DEVICE_ONLY token is supplied to the compiler (see
+ * \ref Group_USBManagement documentation).
*/
void EVENT_USB_Host_DeviceEnumerationComplete(void);