Browse Source

Merge pull request #2984 from leptun/MK3_Serial_LF_only

Do not send CR on the serial line
DRracer 3 years ago
parent
commit
bce9f8c949
1 changed files with 1 additions and 1 deletions
  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');  
 }