aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/LowLevel
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-09-04 10:17:09 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-09-04 10:17:09 +0000
commit0174d8ea70f3d7180e6ea3da2b3720273adb33d9 (patch)
tree428ec10fe10562408591642978539319fe3b1691 /LUFA/Drivers/USB/LowLevel
parent21954179a481295bd9bc3332a7f381fde7d5b2e3 (diff)
downloadlufa-0174d8ea70f3d7180e6ea3da2b3720273adb33d9.tar.gz
lufa-0174d8ea70f3d7180e6ea3da2b3720273adb33d9.tar.bz2
lufa-0174d8ea70f3d7180e6ea3da2b3720273adb33d9.zip
Reduced HOST_DEVICE_SETTLE_DELAY_MS to 1000ms down from 1500ms to improve device compatibility while in USB Host mode, as some devices will drop off the USB bus if no connection is made within a timeout period.
Diffstat (limited to 'LUFA/Drivers/USB/LowLevel')
-rw-r--r--LUFA/Drivers/USB/LowLevel/Host.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/LUFA/Drivers/USB/LowLevel/Host.h b/LUFA/Drivers/USB/LowLevel/Host.h
index aae1fa2f0..8623c4ec6 100644
--- a/LUFA/Drivers/USB/LowLevel/Host.h
+++ b/LUFA/Drivers/USB/LowLevel/Host.h
@@ -95,10 +95,11 @@
* after connection before the enumeration process can start or incorrect operation will
* occur.
*
- * This value may be overridden in the user project makefile as the value of the
- * HOST_DEVICE_SETTLE_DELAY_MS token, and passed to the compiler using the -D switch.
+ * The default delay value may be overridden in the user project makefile by definining the
+ * HOST_DEVICE_SETTLE_DELAY_MS token to tbe required delay in milliseconds, and passed to the
+ * compiler using the -D switch.
*/
- #define HOST_DEVICE_SETTLE_DELAY_MS 1500
+ #define HOST_DEVICE_SETTLE_DELAY_MS 1000
#endif
/* Enums: */