We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4202508 commit cdf9f34Copy full SHA for cdf9f34
src/extension.ts
@@ -217,7 +217,11 @@ export async function activate(context: vscode.ExtensionContext) {
217
});
218
219
registerArduinoCommand("arduino.selectProgrammer", async () => {
220
- // TODO EW: this guard does not prevent building when setting the programmer
+ // Note: this guard does not prevent building while setting the
221
+ // programmer. But when looking at the code of selectProgrammer
222
+ // it seems not to be possible to trigger building while setting
223
+ // the programmer. If the timed IntelliSense analysis is triggered
224
+ // this is not a problem, since it doesn't use the programmer.
225
if (!arduinoContextModule.default.arduinoApp.building) {
226
try {
227
await arduinoContextModule.default.arduinoApp.programmerManager.selectProgrammer();
0 commit comments