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
1 changed files with 5 additions and 0 deletions

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");