mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-06-12 11:54:14 +00:00
Remove an unused variable in the HID loader CLI application. Update known issues list.
This commit is contained in:
parent
c48da94605
commit
cfa399a533
@ -970,13 +970,9 @@ void parse_options(int argc, char **argv)
|
|||||||
} else if (strncmp(arg, "-mmcu=", 6) == 0) {
|
} else if (strncmp(arg, "-mmcu=", 6) == 0) {
|
||||||
arg += 6;
|
arg += 6;
|
||||||
|
|
||||||
uint8_t valid_prefix = 0;
|
|
||||||
|
|
||||||
if (strncmp(arg, "at90usb", 7) == 0) {
|
if (strncmp(arg, "at90usb", 7) == 0) {
|
||||||
valid_prefix = 1;
|
|
||||||
arg += 7;
|
arg += 7;
|
||||||
} else if (strncmp(arg, "atmega", 6) == 0) {
|
} else if (strncmp(arg, "atmega", 6) == 0) {
|
||||||
valid_prefix = 1;
|
|
||||||
arg += 6;
|
arg += 6;
|
||||||
} else {
|
} else {
|
||||||
die("Unknown MCU type\n");
|
die("Unknown MCU type\n");
|
||||||
|
@ -27,6 +27,8 @@
|
|||||||
* - DMA transfers to and from the USB controller are not yet implemented for this release.
|
* - DMA transfers to and from the USB controller are not yet implemented for this release.
|
||||||
* - The UC3C, UC3D and UC3L sub-families of UC3 are not currently supported by the library due to their
|
* - The UC3C, UC3D and UC3L sub-families of UC3 are not currently supported by the library due to their
|
||||||
* altered USB controller design.
|
* altered USB controller design.
|
||||||
|
* - The various \c CreateStream() functions for creating standard \c <stdio.h> compatible virtual file
|
||||||
|
* streams are not available on the UC3 architecture, due to a lack of suitable library support.
|
||||||
* - Architecture Independant
|
* - Architecture Independant
|
||||||
* - The HID parser fails for array type elements that have a MIN and MAX usage applied; each element
|
* - The HID parser fails for array type elements that have a MIN and MAX usage applied; each element
|
||||||
* in the array will receive a unique incrementing usage from the MIN value, up to MAX.
|
* in the array will receive a unique incrementing usage from the MIN value, up to MAX.
|
||||||
|
Loading…
Reference in New Issue
Block a user