Browse Source

mc_pos_control: initialize takeoff altitude reference

according to @dagar's review comment.
sbg
Matthias Grob 6 years ago committed by Lorenz Meier
parent
commit
ae96e16c73
  1. 2
      src/modules/mc_pos_control/mc_pos_control_main.cpp

2
src/modules/mc_pos_control/mc_pos_control_main.cpp

@ -106,7 +106,7 @@ private: @@ -106,7 +106,7 @@ private:
bool _in_takeoff_ramp = false; /**< true while takeoff ramp is applied */
bool _position_triggered_takeoff = false; /**< true if takeoff was triggered by a position setpoint */
float _takeoff_ramp_velocity = -1.f; /**< current value of the smooth takeoff ramp */
float _takeoff_reference_z; /**< z-position when takeoff ramp was initiated */
float _takeoff_reference_z = 0.f; /**< z-position when takeoff ramp was initiated */
orb_advert_t _att_sp_pub{nullptr}; /**< attitude setpoint publication */
orb_advert_t _traj_sp_pub{nullptr}; /**< trajectory setpoints publication */

Loading…
Cancel
Save