#pragma once
#include <GCS_MAVLink/GCS.h>
#include "GCS_MAVLink_Rover.h"
class GCS_Rover : public GCS
{
friend class Rover;
public:
GCS_MAVLINK_CHAN_METHOD_DEFINITIONS(GCS_MAVLINK_Rover);
uint32_t custom_mode() const override;
MAV_TYPE frame_type() const override;
bool vehicle_initialised() const override;
void update_vehicle_sensor_status_flags(void) override;
bool simple_input_active() const override;
bool supersimple_input_active() const override;
protected:
GCS_MAVLINK_Rover *new_gcs_mavlink_backend(AP_HAL::UARTDriver &uart) override {
return NEW_NOTHROW GCS_MAVLINK_Rover(uart);
}
};