Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit 8bc4d99

Browse files
authored
Merge pull request #1369 from rrakso/patch-1
My (probably) fix for uploading with programmer
2 parents 970615a + 8ea053e commit 8bc4d99

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/arduino/arduino.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -596,13 +596,10 @@ export class ArduinoApp {
596596
} else {
597597
args.push("--upload",
598598
"--useprogrammer",
599-
"--pref", `programmer=arduino:${programmer}`);
599+
"--pref", `programmer=${programmer}`);
600600
}
601601

602602
args.push("--port", dc.port);
603-
if (!this.useArduinoCli()) {
604-
args.push("--verify");
605-
}
606603
} else if (buildMode === BuildMode.CliUploadProgrammer) {
607604
const programmer = this.programmerManager.currentProgrammer;
608605
if (!programmer) {

0 commit comments

Comments
 (0)