} 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");
* - DMA transfers to and from the USB controller are not yet implemented for this release.\r
* - The UC3C, UC3D and UC3L sub-families of UC3 are not currently supported by the library due to their\r
* altered USB controller design.\r
+ * - The various \c CreateStream() functions for creating standard \c <stdio.h> compatible virtual file\r
+ * streams are not available on the UC3 architecture, due to a lack of suitable library support.\r
* - Architecture Independant\r
* - The HID parser fails for array type elements that have a MIN and MAX usage applied; each element\r
* in the array will receive a unique incrementing usage from the MIN value, up to MAX.\r