mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-17 22:23:10 +03:00
Explicitly specifying intel hex to avrdude so it's not confused by paths with :'s in them from Windows drive letters
This commit is contained in:
@ -67,7 +67,7 @@ public class AvrdudeUploader extends Uploader {
|
||||
commandDownloader.add("-D");
|
||||
if (!Preferences.getBoolean("upload.verify"))
|
||||
commandDownloader.add("-V");
|
||||
commandDownloader.add("-Uflash:w:" + buildPath + File.separator + className + ".hex");
|
||||
commandDownloader.add("-Uflash:w:" + buildPath + File.separator + className + ".hex:i");
|
||||
return uisp(commandDownloader);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user