Преглед изворни кода

Do not send CR on the serial line

Voinea Dragos пре 3 година
родитељ
комит
9fda6b774d
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      Firmware/MarlinSerial.cpp

+ 1 - 1
Firmware/MarlinSerial.cpp

@@ -255,7 +255,7 @@ void MarlinSerial::print(double n, int digits)
 
 void MarlinSerial::println(void)
 {
-  print('\r');
+  // print('\r');
   print('\n');  
 }