Blimp: remove defines for functions that dont exist

This commit is contained in:
Iampete1 2021-09-09 10:28:39 +01:00 committed by Randy Mackay
parent 0c84c50d70
commit 07a114052c
3 changed files with 0 additions and 9 deletions

View File

@ -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();

View File

@ -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();

View File

@ -178,9 +178,7 @@ public:
// these are candidates for moving into the Mode base
// class.
bool set_mode(Mode::Number mode, ModeReason reason);
void set_land_complete(bool b);
GCS_Blimp &gcs();
void set_throttle_takeoff(void);
// end pass-through functions
};