@ -361,8 +361,6 @@ private:
// landing_detector.cpp
void update_land_and_crash_detectors();
void update_land_detector();
void set_land_complete(bool b);
void set_land_complete_maybe(bool b);
// landing_gear.cpp
void landinggear_update();
@ -177,11 +177,6 @@ bool Mode::set_mode(Mode::Number mode, ModeReason reason)
return blimp.set_mode(mode, reason);
}
void Mode::set_land_complete(bool b)
{
return blimp.set_land_complete(b);
GCS_Blimp &Mode::gcs()
return blimp.gcs();
@ -178,9 +178,7 @@ public:
// these are candidates for moving into the Mode base
// class.
bool set_mode(Mode::Number mode, ModeReason reason);
GCS_Blimp &gcs();
void set_throttle_takeoff(void);
// end pass-through functions
};