From 3ea1886f03e01a6d7d199f954e1426796ed25d47 Mon Sep 17 00:00:00 2001 From: per1234 Date: Thu, 25 Apr 2024 13:38:42 -0700 Subject: [PATCH] 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. --- src/extension.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extension.ts b/src/extension.ts index 2f72c52..b922d34 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -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; } }