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 GCS link at offset ofs
|
2019-06-18 07:38:00 -03:00
|
|
|
GCS_MAVLINK_Copter *chan(const uint8_t ofs) override {
|
|
|
|
if (ofs > _num_gcs) {
|
2020-04-29 21:40:47 -03:00
|
|
|
INTERNAL_ERROR(AP_InternalError::error_t::gcs_offset);
|
2019-06-18 07:38:00 -03:00
|
|
|
return nullptr;
|
2019-06-24 23:57:45 -03:00
|
|
|
}
|
2019-06-18 07:38:00 -03:00
|
|
|
return (GCS_MAVLINK_Copter *)_chan[ofs];
|
2019-06-24 23:57:45 -03:00
|
|
|
}
|
2019-06-18 07:38:00 -03:00
|
|
|
const GCS_MAVLINK_Copter *chan(const uint8_t ofs) const override {
|
|
|
|
if (ofs > _num_gcs) {
|
2020-04-29 21:40:47 -03:00
|
|
|
INTERNAL_ERROR(AP_InternalError::error_t::gcs_offset);
|
2019-06-18 07:38:00 -03:00
|
|
|
return nullptr;
|
2019-06-24 23:57:45 -03:00
|
|
|
}
|
2019-06-18 07:38:00 -03:00
|
|
|
return (GCS_MAVLINK_Copter *)_chan[ofs];
|
2019-06-24 23:57:45 -03:00
|
|
|
}
|
2017-02-13 22:14:55 -04:00
|
|
|
|
2019-02-19 19:01:55 -04:00
|
|
|
void update_vehicle_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;
|
|
|
|
|
2019-04-26 04:12:54 -03:00
|
|
|
protected:
|
|
|
|
|
2020-02-11 21:01:17 -04:00
|
|
|
uint8_t sysid_this_mav() const override;
|
|
|
|
|
2019-04-26 04:12:54 -03:00
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
|
2019-06-18 07:38:00 -03:00
|
|
|
GCS_MAVLINK_Copter *new_gcs_mavlink_backend(GCS_MAVLINK_Parameters ¶ms,
|
|
|
|
AP_HAL::UARTDriver &uart) override {
|
|
|
|
return new GCS_MAVLINK_Copter(params, uart);
|
|
|
|
}
|
2017-02-13 22:14:55 -04:00
|
|
|
|
|
|
|
};
|