moved grbl binary to a non-machine-specific name

This commit is contained in:
Teja 2015-08-31 18:47:24 +02:00
parent 0632bb5fdf
commit 11ab4509cb
2 changed files with 1 additions and 1 deletions

View file

@ -866,7 +866,7 @@ class MachineCom(object):
self._changeState(self.STATE_FLASHING)
self._serial.close()
import subprocess
params = ["avrdude", "-patmega328p", "-carduino", "-b" + str(self._baudrate), "-P" + str(self._port), "-D", "-Uflash:w:grbl.junior.hex"]
params = ["avrdude", "-patmega328p", "-carduino", "-b" + str(self._baudrate), "-P" + str(self._port), "-D", "-Uflash:w:grbl.hex"]
returnCode = subprocess.call(params)
if returnCode == False:
self._log("successfully flashed new grbl version")