diff options
author | David A. Mellis <d.mellis@arduino.cc> | 2010-12-04 13:50:27 -0500 |
---|---|---|
committer | David A. Mellis <d.mellis@arduino.cc> | 2010-12-04 13:50:27 -0500 |
commit | 0f0ed6b45fd77c0f8d2761fa28e992e2b1053f09 (patch) | |
tree | 85a42fd4943bddefe05adefcd70e75705ffb3c2b /firmwares/arduino-usbserial/Descriptors.c | |
parent | 053ec1b989085e0d59f84ded8641058715701a8b (diff) |
Minor bug fixes to the 8U2 USB-to-serial firmware.
Diffstat (limited to 'firmwares/arduino-usbserial/Descriptors.c')
-rwxr-xr-x | firmwares/arduino-usbserial/Descriptors.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmwares/arduino-usbserial/Descriptors.c b/firmwares/arduino-usbserial/Descriptors.c index e4ad956..025250e 100755 --- a/firmwares/arduino-usbserial/Descriptors.c +++ b/firmwares/arduino-usbserial/Descriptors.c @@ -172,7 +172,7 @@ USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor = .EndpointAddress = (ENDPOINT_DESCRIPTOR_DIR_OUT | CDC_RX_EPNUM),
.Attributes = (EP_TYPE_BULK | ENDPOINT_ATTR_NO_SYNC | ENDPOINT_USAGE_DATA),
.EndpointSize = CDC_TXRX_EPSIZE,
- .PollingIntervalMS = 0x00
+ .PollingIntervalMS = 0x01
},
.CDC_DataInEndpoint =
@@ -182,7 +182,7 @@ USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor = .EndpointAddress = (ENDPOINT_DESCRIPTOR_DIR_IN | CDC_TX_EPNUM),
.Attributes = (EP_TYPE_BULK | ENDPOINT_ATTR_NO_SYNC | ENDPOINT_USAGE_DATA),
.EndpointSize = CDC_TXRX_EPSIZE,
- .PollingIntervalMS = 0x00
+ .PollingIntervalMS = 0x01
}
};
|