2017-02-21 20:54:56 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <GCS_MAVLink/GCS.h>
|
|
|
|
#include "GCS_Mavlink.h"
|
|
|
|
|
|
|
|
class GCS_Sub : public GCS
|
|
|
|
{
|
|
|
|
friend class Sub; // 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_Sub &chan(const uint8_t ofs) override {
|
|
|
|
return _chan[ofs];
|
|
|
|
};
|
2017-07-08 01:46:48 -03:00
|
|
|
const GCS_MAVLINK_Sub &chan(const uint8_t ofs) const override {
|
|
|
|
return _chan[ofs];
|
|
|
|
};
|
2017-02-21 20:54:56 -04:00
|
|
|
|
2019-02-19 21:59:40 -04:00
|
|
|
void update_vehicle_sensor_status_flags() override;
|
2019-02-13 20:43:10 -04:00
|
|
|
|
2019-03-01 20:09:34 -04:00
|
|
|
uint32_t custom_mode() const override;
|
|
|
|
MAV_TYPE frame_type() const override;
|
|
|
|
|
2019-03-01 07:50:31 -04:00
|
|
|
bool vehicle_initialised() const override;
|
|
|
|
|
2017-02-21 20:54:56 -04:00
|
|
|
private:
|
|
|
|
|
|
|
|
GCS_MAVLINK_Sub _chan[MAVLINK_COMM_NUM_BUFFERS];
|
|
|
|
|
|
|
|
};
|