ArduCopterFirmwarePlugin.h 3.01 KB
Newer Older
1 2 3 4 5 6 7 8 9
/****************************************************************************
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

10 11 12 13 14 15 16 17 18

/// @file
///     @author Don Gagne <don@thegagnes.com>

#ifndef ArduCopterFirmwarePlugin_H
#define ArduCopterFirmwarePlugin_H

#include "APMFirmwarePlugin.h"

19 20 21 22 23 24 25 26 27 28 29 30
class APMCopterMode : public APMCustomMode
{
public:
    enum Mode {
        STABILIZE   = 0,   // hold level position
        ACRO        = 1,   // rate control
        ALT_HOLD    = 2,   // AUTO control
        AUTO        = 3,   // AUTO control
        GUIDED      = 4,   // AUTO control
        LOITER      = 5,   // Hold a single location
        RTL         = 6,   // AUTO control
        CIRCLE      = 7,   // AUTO control
31
        POSITION    = 8,   // Deprecated
32
        LAND        = 9,   // AUTO control
33
        OF_LOITER   = 10,  // Deprecated
34 35
        DRIFT       = 11,  // Drift 'Car Like' mode
        RESERVED_12 = 12,  // RESERVED FOR FUTURE USE
36
        SPORT       = 13,
37 38 39
        FLIP        = 14,
        AUTOTUNE    = 15,
        POS_HOLD    = 16, // HYBRID LOITER.
40 41 42 43
        BRAKE       = 17,
        THROW       = 18,
        AVOID_ADSB  = 19,
        GUIDED_NOGPS= 20,
Luis Vale Gonçalves's avatar
Luis Vale Gonçalves committed
44
        SAFE_RTL   = 21,   //Safe Return to Launch
45
    };
46
    static const int modeCount = 22;
47 48 49 50

    APMCopterMode(uint32_t mode, bool settable);
};

51 52 53
class ArduCopterFirmwarePlugin : public APMFirmwarePlugin
{
    Q_OBJECT
54

55
public:
56
    ArduCopterFirmwarePlugin(void);
Don Gagne's avatar
Don Gagne committed
57 58

    // Overrides from FirmwarePlugin
Don Gagne's avatar
Don Gagne committed
59
    void    guidedModeLand                      (Vehicle* vehicle) final;
60
    const FirmwarePlugin::remapParamNameMajorVersionMap_t& paramNameRemapMajorVersionMap(void) const final { return _remapParamName; }
Don Gagne's avatar
Don Gagne committed
61 62 63 64 65 66
    int     remapParamNameHigestMinorVersionNumber(int majorVersionNumber) const final;
    bool    multiRotorCoaxialMotors             (Vehicle* vehicle) final;
    bool    multiRotorXConfig                   (Vehicle* vehicle) final;
    QString offlineEditingParamFile             (Vehicle* vehicle) final { Q_UNUSED(vehicle); return QStringLiteral(":/FirmwarePlugin/APM/Copter.OfflineEditing.params"); }
    QString pauseFlightMode                     (void) const override { return QString("Brake"); }
    QString landFlightMode                      (void) const override { return QString("Land"); }
67
    QString takeControlFlightMode               (void) const override { return QString("Loiter"); }
DonLakeFlyer's avatar
DonLakeFlyer committed
68 69 70
    bool    vehicleYawsToNextWaypointInMission  (const Vehicle* vehicle) const override;
    QString autoDisarmParameter                 (Vehicle* vehicle) override { Q_UNUSED(vehicle); return QStringLiteral("DISARM_DELAY"); }
    bool    supportsSmartRTL                    (void) const override { return true; }
71 72 73 74

private:
    static bool _remapParamNameIntialized;
    static FirmwarePlugin::remapParamNameMajorVersionMap_t  _remapParamName;
75 76 77
};

#endif