Browse Source

process serial line during pause

PavelSindler 5 năm trước cách đây
mục cha
commit
85b23d1db6
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      Firmware/cmdqueue.cpp

+ 1 - 1
Firmware/cmdqueue.cpp

@@ -382,7 +382,7 @@ void get_command()
 	}
 
   // start of serial line processing loop
-  while (MYSERIAL.available() > 0 && !saved_printing) {  //is print is saved (crash detection or filament detection), dont process data from serial line
+  while ((MYSERIAL.available() > 0 && !saved_printing) || (MYSERIAL.available() > 0 && isPrintPaused)) {  //is print is saved (crash detection or filament detection), dont process data from serial line
 	
     char serial_char = MYSERIAL.read();
 /*    if (selectedSerialPort == 1)