mirror of https://github.com/ArduPilot/ardupilot
AP_AHRS: remove superfluous linefeed from panic strings
panic adds this within the HAL layer.
This commit is contained in:
parent
684d95a826
commit
d68b95e60e
|
@ -36,7 +36,7 @@ AP_AHRS_View::AP_AHRS_View(AP_AHRS &_ahrs, enum Rotation _rotation, float pitch_
|
||||||
y_angle = 270;
|
y_angle = 270;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
AP_HAL::panic("Unsupported AHRS view %u\n", (unsigned)rotation);
|
AP_HAL::panic("Unsupported AHRS view %u", (unsigned)rotation);
|
||||||
}
|
}
|
||||||
|
|
||||||
_pitch_trim_deg = pitch_trim_deg;
|
_pitch_trim_deg = pitch_trim_deg;
|
||||||
|
|
Loading…
Reference in New Issue