mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-03-02 19:53:57 -04:00
GCS_MAVLink: GCS_Dummy and GCS_routing get get_mission
This commit is contained in:
parent
4ec309222d
commit
6cc19fee35
@ -11,6 +11,11 @@ class GCS_MAVLINK_Dummy : public GCS_MAVLINK
|
||||
bool try_send_message(enum ap_message id) { return true; }
|
||||
bool handle_guided_request(AP_Mission::Mission_Command &cmd) override { return true; }
|
||||
void handle_change_alt_request(AP_Mission::Mission_Command &cmd) override {}
|
||||
|
||||
protected:
|
||||
|
||||
AP_Mission *get_mission() override { return nullptr; }
|
||||
|
||||
};
|
||||
|
||||
/*
|
||||
|
@ -21,6 +21,7 @@ public:
|
||||
protected:
|
||||
|
||||
uint32_t telem_delay() const override { return 0; }
|
||||
AP_Mission *get_mission() override { return nullptr; }
|
||||
|
||||
private:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user