Browse Source

Blimp: remove defines for functions that dont exist

gps-1.3.1
Iampete1 3 years ago committed by Randy Mackay
parent
commit
07a114052c
  1. 2
      Blimp/Blimp.h
  2. 5
      Blimp/mode.cpp
  3. 2
      Blimp/mode.h

2
Blimp/Blimp.h

@ -361,8 +361,6 @@ private: @@ -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();

5
Blimp/mode.cpp

@ -177,11 +177,6 @@ bool Mode::set_mode(Mode::Number mode, ModeReason reason) @@ -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();

2
Blimp/mode.h

@ -178,9 +178,7 @@ public: @@ -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
};

Loading…
Cancel
Save