2017-02-13 22:14:55 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <GCS_MAVLink/GCS.h>
|
|
|
|
#include "GCS_Mavlink.h"
|
|
|
|
|
|
|
|
class GCS_Copter : public GCS
|
|
|
|
{
|
|
|
|
friend class Copter; // for access to _chan in parameter declarations
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
// return the number of valid GCS objects
|
|
|
|
uint8_t num_gcs() const override { return ARRAY_SIZE(_chan); };
|
|
|
|
|
|
|
|
// return GCS link at offset ofs
|
|
|
|
GCS_MAVLINK_Copter &chan(const uint8_t ofs) override {
|
|
|
|
return _chan[ofs];
|
|
|
|
};
|
2017-07-08 01:42:22 -03:00
|
|
|
const GCS_MAVLINK_Copter &chan(const uint8_t ofs) const override {
|
|
|
|
return _chan[ofs];
|
|
|
|
};
|
2017-02-13 22:14:55 -04:00
|
|
|
|
2019-02-13 22:34:03 -04:00
|
|
|
void update_sensor_status_flags(void) override;
|
2019-02-13 20:42:55 -04:00
|
|
|
|
2019-03-01 02:08:33 -04:00
|
|
|
uint32_t custom_mode() const override;
|
|
|
|
MAV_TYPE frame_type() const override;
|
|
|
|
|
|
|
|
const char* frame_string() const override;
|
|
|
|
|
2019-03-01 07:50:22 -04:00
|
|
|
bool vehicle_initialised() const override;
|
|
|
|
|
2019-03-01 19:25:38 -04:00
|
|
|
bool simple_input_active() const override;
|
|
|
|
bool supersimple_input_active() const override;
|
|
|
|
|
2017-02-13 22:14:55 -04:00
|
|
|
private:
|
|
|
|
|
|
|
|
GCS_MAVLINK_Copter _chan[MAVLINK_COMM_NUM_BUFFERS];
|
|
|
|
|
|
|
|
};
|