diff --git a/grbl.junior.hex b/grbl.hex similarity index 100% rename from grbl.junior.hex rename to grbl.hex diff --git a/src/octoprint/util/comm_acc.py b/src/octoprint/util/comm_acc.py index 9fe5f915..947c254b 100644 --- a/src/octoprint/util/comm_acc.py +++ b/src/octoprint/util/comm_acc.py @@ -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")