-
Notifications
You must be signed in to change notification settings - Fork 13.6k
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_att_control: handle front transition timeout for all types #9341
Conversation
@dagar This moves front transition timeout logic to base class so that it is available for all vtol types. |
That looks much better. What do you think about back transition timeout? Rebase on master to get CI working (#9339). |
83f3780
to
352565f
Compare
- moved front transition timout logic to base class so that it's available for all vtol types - cleaned up variable usage Signed-off-by: Roman <bapstroman@gmail.com>
Signed-off-by: Roman <bapstroman@gmail.com>
- copy timestamp_sample through to final actuator_control
Signed-off-by: Roman <bapstroman@gmail.com>
Signed-off-by: Roman <bapstroman@gmail.com>
01be330
to
9bbbc9b
Compare
@@ -323,7 +299,7 @@ void Standard::update_mc_state() | |||
|
|||
// Do not engage pusher assist during a failsafe event | |||
// There could be a problem with the fixed wing drive | |||
if (_attc->get_vtol_vehicle_status()->vtol_transition_failsafe) { | |||
if (_attc->get_vtol_vehicle_status().vtol_transition_failsafe) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dagar How about _vtol_vehicle_status.vtol_transition_failsafe ?
Signed-off-by: Roman <bapstroman@gmail.com>
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Closing as stale. |
for all vtol types
Signed-off-by: Roman bapstroman@gmail.com