diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2009-05-20 14:50:26 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2009-05-20 14:50:26 +0000 |
| commit | 0c8fce157ff038a74af39cb838372e4cda97e832 (patch) | |
| tree | 69cb70f073b336a19d0f11f5bbebc4ffd3a48984 /LUFA/Drivers | |
| parent | 17f247fb727d62823bb0eabbd9dd3eee0525eb09 (diff) | |
Fixed incorrect PID value being used in the USBtoSerial project (thanks to Phill).
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@557 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'LUFA/Drivers')
| -rw-r--r-- | LUFA/Drivers/USB/HighLevel/USBTask.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/LUFA/Drivers/USB/HighLevel/USBTask.h b/LUFA/Drivers/USB/HighLevel/USBTask.h index 21b1ae20..1e1209a5 100644 --- a/LUFA/Drivers/USB/HighLevel/USBTask.h +++ b/LUFA/Drivers/USB/HighLevel/USBTask.h @@ -128,14 +128,15 @@ * in device mode) in order to manage USB communications. This task may be executed inside an RTOS,
* scheduler (e.g. the simple LUFA Scheduler), fast timer ISR or the main user application loop.
*
- * The USB task must be serviced within 50mS in all modes, when needed. The task may be serviced
- * at all times, or (for minimum CPU consumption):
+ * The USB task must be serviced within 30ms while in device mode, or within 1ms while in host mode.
+ * The task may be serviced at all times, or (for minimum CPU consumption):
*
* - In device mode, it may be disabled at start-up, enabled on the firing of the \ref EVENT_USB_Connect() event
* and disabled again on the firing of the \ref EVENT_USB_Disconnect() event.
*
* - In host mode, it may be disabled at start-up, enabled on the firing of the \ref EVENT_USB_DeviceAttached()
- * event and disabled again on the firing of the \ref EVENT_USB_DeviceUnattached() event.
+ * event and disabled again on the firing of the \ref EVENT_USB_DeviceEnumerationComplete() or
+ * \ref EVENT_USB_DeviceEnumerationFailed() events.
*
* If in device mode (only), the control endpoint can instead be managed via interrupts entirely by the library
* by defining the INTERRUPT_CONTROL_ENDPOINT token and passing it to the compiler via the -D switch.
|
