2016-08-25 04:48:27 -03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <GCS_MAVLink/GCS.h>
|
|
|
|
#include "GCS_Mavlink.h"
|
|
|
|
|
|
|
|
class GCS_Plane : public GCS
|
|
|
|
{
|
2017-02-13 06:58:12 -04:00
|
|
|
friend class Plane; // for access to _chan in parameter declarations
|
2016-08-25 04:48:27 -03:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
// return the number of valid GCS objects
|
2017-02-13 06:58:12 -04:00
|
|
|
uint8_t num_gcs() const override { return ARRAY_SIZE(_chan); };
|
2016-08-25 04:48:27 -03:00
|
|
|
|
|
|
|
// return GCS link at offset ofs
|
2017-02-13 06:58:12 -04:00
|
|
|
GCS_MAVLINK_Plane &chan(const uint8_t ofs) override {
|
|
|
|
return _chan[ofs];
|
|
|
|
};
|
2017-07-08 01:46:24 -03:00
|
|
|
const GCS_MAVLINK_Plane &chan(const uint8_t ofs) const override {
|
|
|
|
return _chan[ofs];
|
|
|
|
};
|
2016-08-25 04:48:27 -03:00
|
|
|
|
|
|
|
void send_airspeed_calibration(const Vector3f &vg);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
GCS_MAVLINK_Plane _chan[MAVLINK_COMM_NUM_BUFFERS];
|
2017-02-13 06:58:12 -04:00
|
|
|
|
2016-08-25 04:48:27 -03:00
|
|
|
};
|