mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
AutoLineSmoothVel - Remove duplicate of _yaw_sp_prev update. This is done in the Auto FlightTask, _limit_yaw_rate
This commit is contained in:
parent
a7cf981c8c
commit
d13dfdcd24
@ -104,6 +104,8 @@ protected:
|
||||
float _target_acceptance_radius = 0.0f; /**< Acceptances radius of the target */
|
||||
int _mission_gear = landing_gear_s::GEAR_KEEP;
|
||||
|
||||
float _yaw_sp_prev = NAN;
|
||||
|
||||
ObstacleAvoidance _obstacle_avoidance; /**< class adjusting setpoints according to external avoidance module's input */
|
||||
|
||||
DEFINE_PARAMETERS_CUSTOM_PARENT(FlightTask,
|
||||
@ -119,7 +121,6 @@ protected:
|
||||
private:
|
||||
matrix::Vector2f _lock_position_xy{NAN, NAN}; /**< if no valid triplet is received, lock positition to current position */
|
||||
bool _yaw_lock = false; /**< if within acceptance radius, lock yaw to current yaw */
|
||||
float _yaw_sp_prev = NAN;
|
||||
uORB::Subscription<position_setpoint_triplet_s> *_sub_triplet_setpoint{nullptr};
|
||||
uORB::Subscription<vehicle_status_s> *_sub_vehicle_status{nullptr};
|
||||
|
||||
|
||||
@ -82,8 +82,6 @@ void FlightTaskAutoLineSmoothVel::_generateHeading()
|
||||
if (!_generateHeadingAlongTraj()) {
|
||||
_yaw_setpoint = _yaw_sp_prev;
|
||||
}
|
||||
|
||||
_yaw_sp_prev = _yaw_setpoint;
|
||||
}
|
||||
|
||||
bool FlightTaskAutoLineSmoothVel::_generateHeadingAlongTraj()
|
||||
|
||||
@ -79,7 +79,6 @@ protected:
|
||||
void _generateTrajectory();
|
||||
VelocitySmoothing _trajectory[3]; ///< Trajectories in x, y and z directions
|
||||
|
||||
float _yaw_sp_prev{NAN};
|
||||
bool _want_takeoff{false};
|
||||
|
||||
/* counters for estimator local position resets */
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user