diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-04-19 19:55:16 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-04-19 19:55:16 +0000 |
commit | cfa399a533e40b15a96a90e3e18390d4ae595306 (patch) | |
tree | e5e2509265793f4daca6da4a7179fcdb88327654 | |
parent | c48da94605c12009dc30ab861a97a78c1d4d26de (diff) | |
download | lufa-cfa399a533e40b15a96a90e3e18390d4ae595306.tar.gz lufa-cfa399a533e40b15a96a90e3e18390d4ae595306.tar.bz2 lufa-cfa399a533e40b15a96a90e3e18390d4ae595306.zip |
Remove an unused variable in the HID loader CLI application. Update known issues list.
-rw-r--r-- | Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c | 4 | ||||
-rw-r--r-- | LUFA/DoxygenPages/KnownIssues.txt | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c b/Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c index 6063e1981..c86b0da9c 100644 --- a/Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c +++ b/Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c @@ -970,13 +970,9 @@ void parse_options(int argc, char **argv) } else if (strncmp(arg, "-mmcu=", 6) == 0) { arg += 6; - uint8_t valid_prefix = 0; - if (strncmp(arg, "at90usb", 7) == 0) { - valid_prefix = 1; arg += 7; } else if (strncmp(arg, "atmega", 6) == 0) { - valid_prefix = 1; arg += 6; } else { die("Unknown MCU type\n"); diff --git a/LUFA/DoxygenPages/KnownIssues.txt b/LUFA/DoxygenPages/KnownIssues.txt index 67da093c9..9b648144b 100644 --- a/LUFA/DoxygenPages/KnownIssues.txt +++ b/LUFA/DoxygenPages/KnownIssues.txt @@ -27,6 +27,8 @@ * - 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
* 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
* - 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.
|