Skip to content

Commit

Permalink
remove fixed-wing condition from airspeed fusion condition
Browse files Browse the repository at this point in the history
- enables airspeed fusion to begin during transition already
- airspeed fusion is started based on airspeed being above defined threshold

Signed-off-by: RomanBapst <bapstroman@gmail.com>
  • Loading branch information
RomanBapst authored and bresch committed Jan 7, 2025
1 parent b1773df commit 1abc27d
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ void Ekf::controlAirDataFusion(const imuSample &imu_delayed)
_aid_src_airspeed.innovation_rejected; // TODO: remove this redundant flag

const bool continuing_conditions_passing = _control_status.flags.in_air
&& _control_status.flags.fixed_wing
&& !_control_status.flags.fake_pos;

const bool is_airspeed_significant = airspeed_sample.true_airspeed > _params.arsp_thr;
Expand Down

0 comments on commit 1abc27d

Please sign in to comment.