Skip to content
Snippets Groups Projects
Commit 36ee0297 authored by Beat Küng's avatar Beat Küng
Browse files

FlightTask.hpp: minor code cleanup

parent ca7acae9
No related branches found
No related tags found
No related merge requests found
......@@ -150,7 +150,7 @@ public:
* Sets an external yaw handler which can be used by any flight task to implement a different yaw control strategy.
* This method does nothing, each flighttask which wants to use the yaw handler needs to override this method.
*/
virtual void setYawHandler(WeatherVane *ext_yaw_handler) {};
virtual void setYawHandler(WeatherVane *ext_yaw_handler) {}
void updateVelocityControllerIO(const matrix::Vector3f &vel_sp,
const matrix::Vector3f &thrust_sp) {_velocity_setpoint_feedback = vel_sp; _thrust_setpoint_feedback = thrust_sp; }
......@@ -166,7 +166,7 @@ protected:
*/
void _resetSetpoints();
/*
/**
* Check and update local position
*/
void _evaluateVehicleLocalPosition();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment