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

Merge pull request #2984 from leptun/MK3_Serial_LF_only

Do not send CR on the serial line
DRracer пре 3 година
родитељ
комит
bce9f8c949
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');  
 }