Browse Source

AP_InertialSensor: using atan2f() gives more accurate euler corrections

thanks to Jon and Paul!
master
Andrew Tridgell 10 years ago
parent
commit
aaa35bd1ec
  1. 4
      libraries/AP_InertialSensor/AP_InertialSensor.cpp

4
libraries/AP_InertialSensor/AP_InertialSensor.cpp

@ -435,8 +435,8 @@ AP_InertialSensor::_detect_backends(void) @@ -435,8 +435,8 @@ AP_InertialSensor::_detect_backends(void)
*/
bool AP_InertialSensor::_calculate_trim(const Vector3f &accel_sample, float& trim_roll, float& trim_pitch)
{
trim_roll = -asinf(accel_sample.y/GRAVITY_MSS);
trim_pitch = asinf(accel_sample.x/GRAVITY_MSS);
trim_pitch = atan2f(accel_sample.x, pythagorous2(accel_sample.y, accel_sample.z));
trim_roll = atan2f(-accel_sample.y, -accel_sample.z);
if (fabsf(trim_roll) > radians(10) ||
fabsf(trim_pitch) > radians(10)) {
hal.console->println_P(PSTR("trim over maximum of 10 degrees"));

Loading…
Cancel
Save