We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a39aba5 commit e90cb36Copy full SHA for e90cb36
app/src/processing/app/debug/AvrdudeUploader.java
@@ -286,6 +286,11 @@ public boolean avrdude(Collection params) throws RunnerException {
286
commandDownloader.add("-v");
287
288
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");
294
} else {
295
commandDownloader.add("-q");
296
0 commit comments