Copter: reset land_repo_active flag in RTL mode

This commit is contained in:
Tal Bass 2021-07-12 13:21:47 -04:00 committed by Randy Mackay
parent b4277c49ca
commit 5b3515a1c2

View File

@ -22,6 +22,8 @@ bool ModeRTL::init(bool ignore_checks)
_state = SubMode::STARTING;
_state_complete = true; // see run() method below
terrain_following_allowed = !copter.failsafe.terrain;
// reset flag indicating if pilot has applied roll or pitch inputs during landing
copter.ap.land_repo_active = false;
return true;
}