-
Notifications
You must be signed in to change notification settings - Fork 13.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
VTOL: fix land detector during transitions to fix MC throttle drops #12903
Conversation
…t beginnung due to landing detected Signed-off-by: Silvan Fuhrer <silvan@auterion.com>
Should VtolLandDetector return false for "maybe_landed" and "get_landed_state" if it's in transition? During transitions "is_rotary_wing" will return true. Currently it only checks if it is in fixed wing - which I believe will return false during transitions. |
You can do this in the |
This issue has been automatically marked as stale because it has not had recent activity. Thank you for your contributions. |
I would still vote for preventing any landing detection during transitions, anybody opposed to that? |
@sfuhrer I agree. |
This issue has been automatically marked as stale because it has not had recent activity. Thank you for your contributions. |
Fixes #12877
Problem was that during the backtransitions, the MC land detector detected landing and because of that set the throttle to 0.
With this PR, the min throttle check is disabled for transitions.
Only bench tested yet.
Currently only the MC land detector is running for VTOL. During FW flight it always returns false. #12779
For transitions the fixed-wing land detector could be used (with relaxed airspeed check), a dedicated VTOL land detector implemented or the land detector simply deactivated (as it's here more or less done).