From 628c6776c9a4736fdb434a597ccccf602ef90c39 Mon Sep 17 00:00:00 2001 From: "(no author)" <(no author)@6dc7ffe9-61d6-0310-9af1-9938baff3ed1> Date: Sun, 30 Jul 2006 10:15:14 +0000 Subject: fix poll interval fields in endpoint descriptors git-svn-id: https://svn.openpcd.org:2342/trunk@60 6dc7ffe9-61d6-0310-9af1-9938baff3ed1 --- openpcd/firmware/src/pcd_enumerate.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openpcd/firmware/src/pcd_enumerate.c b/openpcd/firmware/src/pcd_enumerate.c index 82f2d43..80926bc 100644 --- a/openpcd/firmware/src/pcd_enumerate.c +++ b/openpcd/firmware/src/pcd_enumerate.c @@ -85,21 +85,21 @@ const struct _desc cfgDescriptor = { .bEndpointAddress = OPENPCD_OUT_EP, .bmAttributes = USB_ENDPOINT_XFER_BULK, .wMaxPacketSize = 64, - .bInterval = 0x10, /* FIXME */ + .bInterval = 0x00, }, { .bLength = USB_DT_ENDPOINT_SIZE, .bDescriptorType = USB_DT_ENDPOINT, .bEndpointAddress = OPENPCD_IN_EP, .bmAttributes = USB_ENDPOINT_XFER_BULK, .wMaxPacketSize = 64, - .bInterval = 0x10, /* FIXME */ + .bInterval = 0x00, }, { .bLength = USB_DT_ENDPOINT_SIZE, .bDescriptorType = USB_DT_ENDPOINT, .bEndpointAddress = OPENPCD_IRQ_EP, .bmAttributes = USB_ENDPOINT_XFER_INT, .wMaxPacketSize = 64, - .bInterval = 0x10, /* FIXME */ + .bInterval = 0xff, /* FIXME */ }, }, }; -- cgit v1.2.3