AP_HAL: stop emitting extra CR before a LF as part of our printf

This commit is contained in:
Peter Barker 2019-11-08 15:23:34 +11:00 committed by Andrew Tridgell
parent 49693540bd
commit 88de00b251

View File

@ -89,10 +89,6 @@ void print_vprintf(AP_HAL::BetterStream *s, const char *fmt, va_list ap)
break;
}
}
/* emit cr before lf to make most terminals happy */
if (c == '\n') {
s->write('\r');
}
s->write(c);
}