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
|
2019-06-24 23:58:06 -03:00
|
|
|
GCS_MAVLINK_Sub &chan(uint8_t ofs) override {
|
|
|
|
if (ofs >= num_gcs()) {
|
|
|
|
AP::internalerror().error(AP_InternalError::error_t::gcs_offset);
|
|
|
|
ofs = 0;
|
|
|
|
}
|
2017-02-21 20:54:56 -04:00
|
|
|
return _chan[ofs];
|
|
|
|
};
|
2019-06-24 23:58:06 -03:00
|
|
|
const GCS_MAVLINK_Sub &chan(uint8_t ofs) const override {
|
|
|
|
if (ofs >= num_gcs()) {
|
|
|
|
AP::internalerror().error(AP_InternalError::error_t::gcs_offset);
|
|
|
|
ofs = 0;
|
|
|
|
}
|
2017-07-08 01:46:48 -03:00
|
|
|
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;
|
|
|
|
|
2019-04-26 04:13:16 -03:00
|
|
|
protected:
|
|
|
|
|
|
|
|
// minimum amount of time (in microseconds) that must remain in
|
|
|
|
// the main scheduler loop before we are allowed to send any
|
|
|
|
// mavlink messages. We want to prioritise the main flight
|
|
|
|
// control loop over communications
|
|
|
|
uint16_t min_loop_time_remaining_for_message_send_us() const override {
|
|
|
|
return 250;
|
|
|
|
}
|
|
|
|
|
2017-02-21 20:54:56 -04:00
|
|
|
private:
|
|
|
|
|
|
|
|
GCS_MAVLINK_Sub _chan[MAVLINK_COMM_NUM_BUFFERS];
|
|
|
|
|
|
|
|
};
|