aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/LowLevel/MIDI/Descriptors.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-05-06 11:10:25 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-05-06 11:10:25 +0000
commit590d9b5ff882182e04dd05209ec46703c29c1e96 (patch)
tree10a7d61645e852a65799adfd6e8afe749e6fb004 /Demos/Device/LowLevel/MIDI/Descriptors.c
parent430973263bcf11e56c3362d2c714cc8f8c95c354 (diff)
downloadlufa-590d9b5ff882182e04dd05209ec46703c29c1e96.tar.gz
lufa-590d9b5ff882182e04dd05209ec46703c29c1e96.tar.bz2
lufa-590d9b5ff882182e04dd05209ec46703c29c1e96.zip
Increased endpoint polling interval for all demos and projects to 5ms, as 1ms was causing some enumeration issues on some machines (thanks to Riku Salminen).
Diffstat (limited to 'Demos/Device/LowLevel/MIDI/Descriptors.c')
-rw-r--r--Demos/Device/LowLevel/MIDI/Descriptors.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Demos/Device/LowLevel/MIDI/Descriptors.c b/Demos/Device/LowLevel/MIDI/Descriptors.c
index 84898acf6..44db1eee5 100644
--- a/Demos/Device/LowLevel/MIDI/Descriptors.c
+++ b/Demos/Device/LowLevel/MIDI/Descriptors.c
@@ -202,7 +202,7 @@ const USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor =
.EndpointAddress = MIDI_STREAM_OUT_EPADDR,
.Attributes = (EP_TYPE_BULK | ENDPOINT_ATTR_NO_SYNC | ENDPOINT_USAGE_DATA),
.EndpointSize = MIDI_STREAM_EPSIZE,
- .PollingIntervalMS = 0x01
+ .PollingIntervalMS = 0x05
},
.Refresh = 0,
@@ -227,7 +227,7 @@ const USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor =
.EndpointAddress = MIDI_STREAM_IN_EPADDR,
.Attributes = (EP_TYPE_BULK | ENDPOINT_ATTR_NO_SYNC | ENDPOINT_USAGE_DATA),
.EndpointSize = MIDI_STREAM_EPSIZE,
- .PollingIntervalMS = 0x01
+ .PollingIntervalMS = 0x05
},
.Refresh = 0,