Formatting.

This commit is contained in:
James Goppert 2016-08-05 06:52:35 -04:00
parent 08f5ece306
commit 6ac79aa55f
3 changed files with 12 additions and 10 deletions

View File

@ -80,6 +80,7 @@ void BlockLocalPositionEstimator::baroCorrect()
mavlink_and_console_log_critical(&mavlink_log_pub, "[lpe] baro fault, r %5.2f m, beta %5.2f",
double(r(0)), double(beta));
}
_baroFault = FAULT_MINOR;
}

View File

@ -180,6 +180,7 @@ void BlockLocalPositionEstimator::gpsCorrect()
double(r(0)*r(0) / S_I(0, 0)), double(r(1)*r(1) / S_I(1, 1)), double(r(2)*r(2) / S_I(2, 2)),
double(r(3)*r(3) / S_I(3, 3)), double(r(4)*r(4) / S_I(4, 4)), double(r(5)*r(5) / S_I(5, 5)));
}
_gpsFault = FAULT_MINOR;
}