Merge pull request #2984 from leptun/MK3_Serial_LF_only

Do not send CR on the serial line
This commit is contained in:
DRracer 2021-01-26 08:42:47 +01:00 committed by GitHub
commit bce9f8c949
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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