mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
GCS_MAVLink: GCS_Dummy: add missing CR to console output of statustexts
send_text and friends don't expect the caller to add the CR; the GCS will add one. Since we're jsut emitting to console, add one ourselves.
This commit is contained in:
parent
94ff5d13c0
commit
ebfa910774
@ -90,6 +90,7 @@ private:
|
||||
void send_textv(MAV_SEVERITY severity, const char *fmt, va_list arg_list, uint8_t dest_bitmask) override {
|
||||
hal.console->printf("TOGCS: ");
|
||||
hal.console->vprintf(fmt, arg_list);
|
||||
hal.console->printf("\n");
|
||||
}
|
||||
|
||||
MAV_TYPE frame_type() const override { return MAV_TYPE_FIXED_WING; }
|
||||
|
Loading…
Reference in New Issue
Block a user