1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-12-02 13:24:12 +01: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:
David A. Mellis 2007-07-19 00:27:29 +00:00
parent 084b860e60
commit 3d1ebb5e64

View File

@ -67,7 +67,7 @@ public class AvrdudeUploader extends Uploader {
commandDownloader.add("-D"); commandDownloader.add("-D");
if (!Preferences.getBoolean("upload.verify")) if (!Preferences.getBoolean("upload.verify"))
commandDownloader.add("-V"); 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); return uisp(commandDownloader);
} }