Plane: lower throttle threshold for quadplane is_flying

This commit is contained in:
Andrew Tridgell 2016-05-28 07:10:13 +10:00
parent a94a19bd09
commit 20cf326093

View File

@ -590,7 +590,7 @@ bool QuadPlane::is_flying(void)
if (!available()) {
return false;
}
if (motors->get_throttle() > 0.2 && !motors->limit.throttle_lower) {
if (motors->get_throttle() > 0.1 && !motors->limit.throttle_lower) {
return true;
}
return false;