Browse Source

Merge pull request #820 from PX4/filter_nan_guard

pauls estimator: Added NaN guard before publishing
sbg
Lorenz Meier 11 years ago
parent
commit
0b85c41cd1
  1. 2
      src/modules/fw_att_pos_estimator/fw_att_pos_estimator_main.cpp

2
src/modules/fw_att_pos_estimator/fw_att_pos_estimator_main.cpp

@ -959,7 +959,7 @@ FixedwingEstimator::task_main() @@ -959,7 +959,7 @@ FixedwingEstimator::task_main()
}
// Publish results
if (_initialized) {
if (_initialized && (check == OK)) {

Loading…
Cancel
Save