Skip to content
Snippets Groups Projects
Commit 0db264bc authored by Roman Bapst's avatar Roman Bapst
Browse files

Merge pull request #3519 from PX4/mc_pos_quick_fix

quick fix:
parents 415e42f5 be1db2ce
No related branches found
No related tags found
No related merge requests found
......@@ -1494,6 +1494,9 @@ MulticopterPositionControl::task_main()
_landing_started = hrt_absolute_time();
}
#if 0
// TODO quick fix: remove this since in combination with the non-working fall detection
// it can lead to the copter falling out of the sky
/* don't let it throttle up again during landing */
if (thrust_sp(2) < 0.0f && thrust_abs < _landing_thrust
/* fix landing thrust after a certain time when velocity change is minimal */
......@@ -1502,6 +1505,7 @@ MulticopterPositionControl::task_main()
&& hrt_elapsed_time(&_landing_started) > 15e5) {
_landing_thrust = thrust_abs;
}
#endif
/* assume ground, reduce thrust */
if (hrt_elapsed_time(&_landing_started) > 15e5
......
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