Fixed MagStripe keyboard interface polling interval, increased to 4ms from 2ms to...
authorDean Camera <dean@fourwalledcubicle.com>
Sun, 29 Mar 2009 06:31:24 +0000 (06:31 +0000)
committerDean Camera <dean@fourwalledcubicle.com>
Sun, 29 Mar 2009 06:31:24 +0000 (06:31 +0000)
LUFA/ChangeLog.txt
Projects/Magstripe/Descriptors.c

index 04bfdc0..0b00a89 100644 (file)
@@ -15,7 +15,7 @@
   *  - Fixed Configuration Descriptor search routine freezing when a comparitor returned a failure\r
   *  - Removed HID report item serial dump in the MouseHostWithParser and KeyboardHostWithParser - useful only for debugging, and\r
   *    slowed down the enumeration of HID devices too much\r
   *  - Fixed Configuration Descriptor search routine freezing when a comparitor returned a failure\r
   *  - Removed HID report item serial dump in the MouseHostWithParser and KeyboardHostWithParser - useful only for debugging, and\r
   *    slowed down the enumeration of HID devices too much\r
-  *  - Increased the number of bits per track which can be read in the MagStripe project to 20480 when compiled for the AT90USBXXX6/7\r
+  *  - Increased the number of bits per track which can be read in the MagStripe project to 8192 when compiled for the AT90USBXXX6/7\r
   *  - Fixed KeyboardMouse demo discarding the wIndex value in the REQ_GetReport request\r
   *  - USBtoSerial demo now discards all Rx data when not connected to a USB host, rather than buffering characters for transmission\r
   *    next time the device is attached to a host.\r
   *  - Fixed KeyboardMouse demo discarding the wIndex value in the REQ_GetReport request\r
   *  - USBtoSerial demo now discards all Rx data when not connected to a USB host, rather than buffering characters for transmission\r
   *    next time the device is attached to a host.\r
@@ -41,7 +41,7 @@
   *  - Keyboard and Mouse host demos (normal and data interrupt driven) combined into unified keyboard and mouse demos\r
   *  - Removed AVRISP_Programmer project due to code quality concerns\r
   *  - Fixed CDC demo not sending an empty packet after each transfer to prevent the host from buffering incomming data\r
   *  - Keyboard and Mouse host demos (normal and data interrupt driven) combined into unified keyboard and mouse demos\r
   *  - Removed AVRISP_Programmer project due to code quality concerns\r
   *  - Fixed CDC demo not sending an empty packet after each transfer to prevent the host from buffering incomming data\r
-  *  - Fixed documentation typoes and preprocessor checks relating to misspellings of the USE_RAM_DESCRIPTORS token (thanks to Ian Gregg)\r
+  *  - Fixed documentation typos and preprocessor checks relating to misspellings of the USE_RAM_DESCRIPTORS token (thanks to Ian Gregg)\r
   *  - Fixed USBTask.h not conditionally including HostChapter9.h only when CAN_BE_DEVICE is defined (thanks to Ian Gregg)\r
   *  - Fixed incorrect ADC driver init register manipulation (thanks to Tobias)\r
   *\r
   *  - Fixed USBTask.h not conditionally including HostChapter9.h only when CAN_BE_DEVICE is defined (thanks to Ian Gregg)\r
   *  - Fixed incorrect ADC driver init register manipulation (thanks to Tobias)\r
   *\r
index 6811f52..71abca6 100644 (file)
@@ -154,7 +154,7 @@ USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor =
                        EndpointAddress:        (ENDPOINT_DESCRIPTOR_DIR_IN | KEYBOARD_EPNUM),\r
                        Attributes:             EP_TYPE_INTERRUPT,\r
                        EndpointSize:           KEYBOARD_EPSIZE,\r
                        EndpointAddress:        (ENDPOINT_DESCRIPTOR_DIR_IN | KEYBOARD_EPNUM),\r
                        Attributes:             EP_TYPE_INTERRUPT,\r
                        EndpointSize:           KEYBOARD_EPSIZE,\r
-                       PollingIntervalMS:      0x02\r
+                       PollingIntervalMS:      0x04\r
                },\r
 };\r
 \r
                },\r
 };\r
 \r