2016-05-27 10:14:08 -03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <GCS_MAVLink/GCS.h>
|
|
|
|
|
|
|
|
class GCS_MAVLINK_Tracker : public GCS_MAVLINK
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2016-05-29 21:17:24 -03:00
|
|
|
// telem_delay is not used by Tracker but is pure virtual, thus
|
|
|
|
// this implementaiton. it probably *should* be used by Tracker,
|
|
|
|
// as currently Tracker may brick XBees
|
2016-07-01 02:34:44 -03:00
|
|
|
uint32_t telem_delay() const override { return 0; }
|
2016-05-29 21:17:24 -03:00
|
|
|
|
2017-07-12 04:51:08 -03:00
|
|
|
uint8_t sysid_my_gcs() const override;
|
2017-07-08 00:49:17 -03:00
|
|
|
|
2017-08-11 03:15:34 -03:00
|
|
|
bool set_mode(uint8_t mode) override;
|
|
|
|
|
2018-03-18 01:15:13 -03:00
|
|
|
MAV_RESULT _handle_command_preflight_calibration_baro() override;
|
2018-07-03 23:23:52 -03:00
|
|
|
MAV_RESULT handle_command_long_packet(const mavlink_command_long_t &packet) override;
|
2018-03-17 08:40:57 -03:00
|
|
|
|
2018-11-07 07:10:19 -04:00
|
|
|
int32_t global_position_int_relative_alt() const override {
|
2018-05-01 09:04:54 -03:00
|
|
|
return 0; // what if we have been picked up and carried somewhere?
|
|
|
|
}
|
|
|
|
|
2019-02-20 23:02:29 -04:00
|
|
|
bool set_home_to_current_location(bool lock) override WARN_IF_UNUSED;
|
|
|
|
bool set_home(const Location& loc, bool lock) override WARN_IF_UNUSED;
|
2018-03-28 22:03:21 -03:00
|
|
|
uint64_t capabilities() const override;
|
2018-07-06 00:30:42 -03:00
|
|
|
|
2019-02-17 20:24:23 -04:00
|
|
|
void send_nav_controller_output() const override;
|
2019-02-28 19:32:16 -04:00
|
|
|
void send_pid_tuning() override;
|
2019-02-17 20:24:23 -04:00
|
|
|
|
2016-05-27 10:14:08 -03:00
|
|
|
private:
|
|
|
|
|
2018-03-17 03:38:43 -03:00
|
|
|
void packetReceived(const mavlink_status_t &status, mavlink_message_t &msg) override;
|
|
|
|
void mavlink_check_target(const mavlink_message_t &msg);
|
2016-05-27 10:14:08 -03:00
|
|
|
void handleMessage(mavlink_message_t * msg) override;
|
|
|
|
bool handle_guided_request(AP_Mission::Mission_Command &cmd) override;
|
|
|
|
void handle_change_alt_request(AP_Mission::Mission_Command &cmd) override;
|
2019-02-28 17:38:28 -04:00
|
|
|
void send_global_position_int() override;
|
2016-05-27 10:14:08 -03:00
|
|
|
|
2018-03-22 06:30:44 -03:00
|
|
|
MAV_MODE base_mode() const override;
|
|
|
|
MAV_STATE system_status() const override;
|
2019-01-22 23:22:04 -04:00
|
|
|
|
2019-02-01 01:01:03 -04:00
|
|
|
bool waypoint_receiving;
|
2016-05-27 10:14:08 -03:00
|
|
|
};
|