AP_Mission: add accessor for in_landing_flag()

This commit is contained in:
Tom Pittenger 2020-09-14 19:26:29 -07:00 committed by Tom Pittenger
parent f364dc933d
commit 043a3ba06e

View File

@ -529,6 +529,11 @@ public:
_flags.in_landing_sequence = flag;
}
// get in_landing_sequence flag
bool get_in_landing_sequence_flag() const {
return _flags.in_landing_sequence;
}
// force mission to resume when start_or_resume() is called
void set_force_resume(bool force_resume)
{