Fixed broken USBFOO board drivers due to missing BOARD_USBFOO define.
authorDean Camera <dean@fourwalledcubicle.com>
Tue, 30 Nov 2010 02:43:44 +0000 (02:43 +0000)
committerDean Camera <dean@fourwalledcubicle.com>
Tue, 30 Nov 2010 02:43:44 +0000 (02:43 +0000)
Bootloaders/DFU/Descriptors.c
LUFA/Common/BoardTypes.h
LUFA/ManPages/ChangeLog.txt

index 7a58ec0..6fa0af7 100644 (file)
@@ -109,7 +109,7 @@ USB_Descriptor_Configuration_t ConfigurationDescriptor =
                        .Attributes             = (ATTR_CAN_UPLOAD | ATTR_CAN_DOWNLOAD),
 
                        .DetachTimeout          = 0x0000,
-                       .TransferSize           = 0x0c00,
+                       .TransferSize           = 0x0C00,
 
                        .DFUSpecification       = VERSION_BCD(01.01)
                }
index 7d0d629..d14076c 100644 (file)
                        /** Selects the Microsin AVR-USB162 specific board drivers, including the Button and LEDs drivers. */
                        #define BOARD_MICROSIN162   24
 
+                       /** Selects the Kernel Concepts USBFOO specific board drivers, including the Button and LEDs drivers. */
+                       #define BOARD_USBFOO        25
+
                        #if !defined(__DOXYGEN__)
                                #define BOARD_          BOARD_NONE
 
index aaf4dd1..8be0c9c 100644 (file)
@@ -23,7 +23,7 @@
   *
   *  <b>Fixed:</b>
   *  - Core:
-  *   - None
+  *   - Fixed broken USBFOO board drivers due to missing BOARD_USBFOO define
   *  - Library Applications:
   *   - Fixed Benito project discarding incoming data from the USB virtual serial port when the USART is busy
   *   - Fixed broken DFU bootloader, added XPLAIN support for bootloader start when XCK jumpered to ground