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:
per1234
2024-04-25 13:38:42 -07:00
committed by GitHub
parent a86975b4f9
commit 3ea1886f03

View File

@ -120,7 +120,7 @@ export function activate(context: vscode.ExtensionContext) {
break; break;
} }
default: { 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; return;
} }
} }