AP_HAL: stop emitting extra CR before a LF as part of our printf
This commit is contained in:
parent
49693540bd
commit
88de00b251
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user