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

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