Do not send CR on the serial line

This commit is contained in:
Voinea Dragos 2021-01-22 17:58:01 +02:00
parent f809691003
commit 9fda6b774d

View file

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