1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-18 07:52:14 +01:00

Removed wiringlite from the prog.hex path for the downloader.

This commit is contained in:
David A. Mellis 2005-09-09 23:51:14 +00:00
parent 98b5f8759a
commit 3099c4f2de

View File

@ -259,7 +259,7 @@ public class Downloader implements MessageConsumer {
commandLine += " -dprog=stk500 -dspeed=9600 ";
commandLine += " -dserial=" + serial_port;
commandLine += " -dpart=ATmega8";
commandLine += " if=" +userdir + "lib/wiringlite/tmp/prog.hex --upload";
commandLine += " if=" +userdir + "lib/tmp/prog.hex --upload";
} else {
commandLine = userdir + "tools\\gnumake.exe" + " SERIAL=" + serial_port + verbose + " -C " + userdir + ". program";
}