mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-22 16:48:29 -04:00
Copter: airmode should mean airmode. only idle on landing when in airmode
This commit is contained in:
parent
e8e59014ad
commit
fbd41b6332
@ -17,8 +17,8 @@ void ModeAcro::run()
|
||||
if (!motors->armed()) {
|
||||
// Motors should be Stopped
|
||||
motors->set_desired_spool_state(AP_Motors::DesiredSpoolState::SHUT_DOWN);
|
||||
} else if (copter.ap.throttle_zero) {
|
||||
// Attempting to Land
|
||||
} else if (copter.ap.throttle_zero && copter.air_mode != AirMode::AIRMODE_ENABLED) {
|
||||
// Attempting to Land, if airmode is enabled only an actual landing will spool down the motors
|
||||
motors->set_desired_spool_state(AP_Motors::DesiredSpoolState::GROUND_IDLE);
|
||||
} else {
|
||||
motors->set_desired_spool_state(AP_Motors::DesiredSpoolState::THROTTLE_UNLIMITED);
|
||||
|
Loading…
Reference in New Issue
Block a user