AP_AHRS: remove superfluous linefeed from panic strings

panic adds this within the HAL layer.
This commit is contained in:
Peter Barker 2024-12-13 20:15:43 +11:00 committed by Peter Barker
parent 684d95a826
commit d68b95e60e
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ AP_AHRS_View::AP_AHRS_View(AP_AHRS &_ahrs, enum Rotation _rotation, float pitch_
y_angle = 270;
break;
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;