CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
Ardupilot

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: Ardupilot/ardupilot
Path: blob/master/ArduPlane/GCS_Plane.h
Views: 1798
1
#pragma once
2
3
#include <GCS_MAVLink/GCS.h>
4
#include "GCS_MAVLink_Plane.h"
5
6
class GCS_Plane : public GCS
7
{
8
friend class Plane; // for access to _chan in parameter declarations
9
10
public:
11
12
// the following define expands to a pair of methods to retrieve a
13
// pointer to an object of the correct subclass for the link at
14
// offset ofs. These are of the form:
15
// GCS_MAVLINK_XXXX *chan(const uint8_t ofs) override;
16
// const GCS_MAVLINK_XXXX *chan(const uint8_t ofs) override const;
17
GCS_MAVLINK_CHAN_METHOD_DEFINITIONS(GCS_MAVLINK_Plane);
18
19
protected:
20
21
uint8_t sysid_this_mav() const override;
22
void update_vehicle_sensor_status_flags(void) override;
23
uint32_t custom_mode() const override;
24
MAV_TYPE frame_type() const override;
25
26
GCS_MAVLINK_Plane *new_gcs_mavlink_backend(GCS_MAVLINK_Parameters &params,
27
AP_HAL::UARTDriver &uart) override {
28
return NEW_NOTHROW GCS_MAVLINK_Plane(params, uart);
29
}
30
31
AP_GPS::GPS_Status min_status_for_gps_healthy() const override {
32
// NO_FIX simply excludes NO_GPS
33
return AP_GPS::GPS_OK_FIX_3D;
34
}
35
};
36
37