Skip to content

Commit e90cb36

Browse files
committed
tweaked verbosity level for avrdude on Leonardo uploads
1 parent a39aba5 commit e90cb36

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

app/src/processing/app/debug/AvrdudeUploader.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,11 @@ public boolean avrdude(Collection params) throws RunnerException {
286286
commandDownloader.add("-v");
287287
commandDownloader.add("-v");
288288
commandDownloader.add("-v");
289+
} else if (Base.getBoardPreferences().get("bootloader.path").equals("caterina")) {
290+
/* avrdude draws the line between verbose and quiet differently
291+
* uploads using AVR109 protocol. Compensate by being a little less
292+
* quiet about the results for these uploads */
293+
commandDownloader.add("-q");
289294
} else {
290295
commandDownloader.add("-q");
291296
commandDownloader.add("-q");

0 commit comments

Comments
 (0)