Skip to content
Snippets Groups Projects
Commit d4196f7f authored by Daniel Agar's avatar Daniel Agar Committed by Lorenz Meier
Browse files

mc_att_control fix and enforce code style

parent 8f013248
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,6 @@ find src/ \
-path src/modules/commander -prune -o \
-path src/modules/ekf_att_pos_estimator -prune -o \
-path src/modules/mavlink -prune -o \
-path src/modules/mc_att_control -prune -o \
-path src/modules/mc_att_control_multiplatform -prune -o \
-path src/modules/mc_pos_control -prune -o \
-path src/modules/mc_pos_control_multiplatform -prune -o \
......
......@@ -435,6 +435,7 @@ MulticopterAttitudeControl::~MulticopterAttitudeControl()
}
} while (_control_task != -1);
}
if (_ts_opt_recovery != nullptr) {
delete _ts_opt_recovery;
}
......@@ -717,7 +718,7 @@ MulticopterAttitudeControl::control_attitude(float dt)
* calculate angle and axis for R -> R_sp rotation directly */
math::Quaternion q_error;
q_error.from_dcm(R.transposed() * R_sp);
math::Vector<3> e_R_d = q_error(0) >= 0.0f ? q_error.imag() * 2.0f: -q_error.imag() * 2.0f;
math::Vector<3> e_R_d = q_error(0) >= 0.0f ? q_error.imag() * 2.0f : -q_error.imag() * 2.0f;
/* use fusion of Z axis based rotation and direct rotation */
float direct_w = e_R_z_cos * e_R_z_cos * yaw_w;
......
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