1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-30 19:52:13 +01:00

tweaked verbosity level for avrdude on Leonardo uploads

This commit is contained in:
Zach Eveland 2012-03-29 22:31:01 -04:00
parent a39aba5eff
commit e90cb3650d

View File

@ -286,6 +286,11 @@ public class AvrdudeUploader extends Uploader {
commandDownloader.add("-v");
commandDownloader.add("-v");
commandDownloader.add("-v");
} else if (Base.getBoardPreferences().get("bootloader.path").equals("caterina")) {
/* avrdude draws the line between verbose and quiet differently
* uploads using AVR109 protocol. Compensate by being a little less
* quiet about the results for these uploads */
commandDownloader.add("-q");
} else {
commandDownloader.add("-q");
commandDownloader.add("-q");