mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-06-12 03:44:19 +00:00
Fixed broken USBFOO board drivers due to missing BOARD_USBFOO define.
This commit is contained in:
parent
c879887dce
commit
1c74525d2f
@ -109,7 +109,7 @@ USB_Descriptor_Configuration_t ConfigurationDescriptor =
|
|||||||
.Attributes = (ATTR_CAN_UPLOAD | ATTR_CAN_DOWNLOAD),
|
.Attributes = (ATTR_CAN_UPLOAD | ATTR_CAN_DOWNLOAD),
|
||||||
|
|
||||||
.DetachTimeout = 0x0000,
|
.DetachTimeout = 0x0000,
|
||||||
.TransferSize = 0x0c00,
|
.TransferSize = 0x0C00,
|
||||||
|
|
||||||
.DFUSpecification = VERSION_BCD(01.01)
|
.DFUSpecification = VERSION_BCD(01.01)
|
||||||
}
|
}
|
||||||
|
@ -137,6 +137,9 @@
|
|||||||
/** Selects the Microsin AVR-USB162 specific board drivers, including the Button and LEDs drivers. */
|
/** Selects the Microsin AVR-USB162 specific board drivers, including the Button and LEDs drivers. */
|
||||||
#define BOARD_MICROSIN162 24
|
#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__)
|
#if !defined(__DOXYGEN__)
|
||||||
#define BOARD_ BOARD_NONE
|
#define BOARD_ BOARD_NONE
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
*
|
*
|
||||||
* <b>Fixed:</b>
|
* <b>Fixed:</b>
|
||||||
* - Core:
|
* - Core:
|
||||||
* - None
|
* - Fixed broken USBFOO board drivers due to missing BOARD_USBFOO define
|
||||||
* - Library Applications:
|
* - Library Applications:
|
||||||
* - Fixed Benito project discarding incoming data from the USB virtual serial port when the USART is busy
|
* - 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
|
* - Fixed broken DFU bootloader, added XPLAIN support for bootloader start when XCK jumpered to ground
|
||||||
|
Loading…
Reference in New Issue
Block a user