diff --git a/Bootloaders/DFU/Descriptors.c b/Bootloaders/DFU/Descriptors.c index 7a58ec054e6c8c682f74f7f31857dbe72292b66c..6fa0af73d257741de92ee29c3feecb05d11f22b2 100644 --- a/Bootloaders/DFU/Descriptors.c +++ b/Bootloaders/DFU/Descriptors.c @@ -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) } diff --git a/LUFA/Common/BoardTypes.h b/LUFA/Common/BoardTypes.h index 7d0d6297e7b22bb48a8d100d631349fcf7bfd0e1..d14076c2af84989bfa434e4eb8eb90343282132b 100644 --- a/LUFA/Common/BoardTypes.h +++ b/LUFA/Common/BoardTypes.h @@ -137,6 +137,9 @@ /** 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 diff --git a/LUFA/ManPages/ChangeLog.txt b/LUFA/ManPages/ChangeLog.txt index aaf4dd1ef8452247617b1b60946132371763cc44..8be0c9cc9fe32d90d5c9d263e1a3f4477556b7cc 100644 --- a/LUFA/ManPages/ChangeLog.txt +++ b/LUFA/ManPages/ChangeLog.txt @@ -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