mirror of
https://gitcode.com/gh_mirrors/ar/arduino-littlefs-upload.git
synced 2025-08-06 18:24:30 +08:00
Update unsupported target error to reflect addition of ESP32 support (#22)
Support for the ESP32 family of microcontrollers was recently added to the extension. When a user attempts a filesystem upload while a board of an unsupported architecture is selected in Arduino IDE, the extension displays a helpful error message which includes a list of supported targets. This message was not updated at the time the ESP32 support was added.
This commit is contained in:
@ -120,7 +120,7 @@ export function activate(context: vscode.ExtensionContext) {
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
writeEmitter.fire("ERROR: Only Arduino-Pico RP2040 and ESP8266 supported.\r\n");
|
||||
writeEmitter.fire("ERROR: Only Arduino-Pico RP2040, ESP32, and ESP8266 supported.\r\n");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user