Allow throttle updates below 10%

This commit is contained in:
sander 2016-06-10 02:17:34 +02:00 committed by Roman
parent f2e425b75b
commit 3002852bfa

View File

@ -1326,7 +1326,7 @@ FixedwingPositionControl::control_position(const math::Vector<2> &current_positi
float mission_throttle = _parameters.throttle_cruise;
if (PX4_ISFINITE(_pos_sp_triplet.current.cruising_throttle) &&
_pos_sp_triplet.current.cruising_throttle > 0.1f) {
_pos_sp_triplet.current.cruising_throttle > 0.01f) {
mission_throttle = _pos_sp_triplet.current.cruising_throttle;
}