mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-17 22:23:10 +03:00
tweaked verbosity level for avrdude on Leonardo uploads
This commit is contained in:
@ -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");
|
||||
|
Reference in New Issue
Block a user