Browse Source

Stop sending empty commands as this confuses the communication with e.g. Smoothieware. See PR #3346 and bug #1777

Simon Lundell 7 years ago
parent
commit
d62dbe5187
1 changed files with 0 additions and 1 deletions
  1. 0 1
      plugins/USBPrinting/USBPrinterOutputDevice.py

+ 0 - 1
plugins/USBPrinting/USBPrinterOutputDevice.py

@@ -266,7 +266,6 @@ class USBPrinterOutputDevice(PrinterOutputDevice):
             command = (command + "\n").encode()
         if not command.endswith(b"\n"):
             command += b"\n"
-        self._serial.write(b"\n")
         self._serial.write(command)
 
     def _update(self):