summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2012-04-13 18:34:52 -0700
committerKeith Packard <keithp@keithp.com>2012-04-14 14:04:29 -0700
commit3c67543f3e5fddc6a8850f33ac519ccd55b607f0 (patch)
treec56c4d95033bdd34066baa8ce3926355cb202b4e
parent0667261e03b3fd403e97d02ea6204b007bb13f58 (diff)
altos: Set USB Interrupt endpoint interval to maximum allowed
We don't ever send anything over this channel, so there's no sense asking the host to poll it very often. Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r--src/core/ao_product.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ao_product.c b/src/core/ao_product.c
index f79922f5..67ec6793 100644
--- a/src/core/ao_product.c
+++ b/src/core/ao_product.c
@@ -100,7 +100,7 @@ __code __at(0x00aa) uint8_t ao_usb_descriptors [] =
AO_USB_INT_EP|0x80, /* bEndpointAddress */
0x03, /* bmAttributes = intr */
LE_WORD(8), /* wMaxPacketSize */
- 0x0A, /* bInterval */
+ 0xff, /* bInterval */
/* Data class interface descriptor */
0x09,