Browse Source

Fixed missing increment across states

sbg
Lorenz Meier 11 years ago
parent
commit
29abf6db39
  1. 1
      src/modules/fw_att_pos_estimator/fw_att_pos_estimator_main.cpp

1
src/modules/fw_att_pos_estimator/fw_att_pos_estimator_main.cpp

@ -758,6 +758,7 @@ FixedwingEstimator::task_main() @@ -758,6 +758,7 @@ FixedwingEstimator::task_main()
while ((i < ekf_n_states) && (i < max_states)) {
rep.states[i] = ekf_report.states[i];
i++;
}
if (_estimator_status_pub > 0) {

Loading…
Cancel
Save