ArduRoverFirmwarePlugin.cc 3.22 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
#include "ArduRoverFirmwarePlugin.h"
11
#include "QGCApplication.h"
12

13 14 15
bool ArduRoverFirmwarePlugin::_remapParamNameIntialized = false;
FirmwarePlugin::remapParamNameMajorVersionMap_t ArduRoverFirmwarePlugin::_remapParamName;

Don Gagne's avatar
Don Gagne committed
16 17
APMRoverMode::APMRoverMode(uint32_t mode, bool settable)
    : APMCustomMode(mode, settable)
18 19 20
{
    QMap<uint32_t,QString> enumToString;
    enumToString.insert(MANUAL,         "Manual");
Don Gagne's avatar
Don Gagne committed
21
    enumToString.insert(ACRO,           "Acro");
22 23
    enumToString.insert(STEERING,       "Steering");
    enumToString.insert(HOLD,           "Hold");
Don Gagne's avatar
Don Gagne committed
24
    enumToString.insert(LOITER,         "Loiter");
Don Gagne's avatar
Don Gagne committed
25
    enumToString.insert(FOLLOW,         "Follow");
Don Gagne's avatar
Don Gagne committed
26
    enumToString.insert(SIMPLE,         "Simple");
27 28
    enumToString.insert(AUTO,           "Auto");
    enumToString.insert(RTL,            "RTL");
Don Gagne's avatar
Don Gagne committed
29
    enumToString.insert(SMART_RTL,      "Smart RTL");
30 31 32 33 34 35
    enumToString.insert(GUIDED,         "Guided");
    enumToString.insert(INITIALIZING,   "Initializing");

    setEnumToStringMapping(enumToString);
}

36
ArduRoverFirmwarePlugin::ArduRoverFirmwarePlugin(void)
37 38 39
{
    QList<APMCustomMode> supportedFlightModes;
    supportedFlightModes << APMRoverMode(APMRoverMode::MANUAL       ,true);
Don Gagne's avatar
Don Gagne committed
40
    supportedFlightModes << APMRoverMode(APMRoverMode::ACRO         ,true);
41 42
    supportedFlightModes << APMRoverMode(APMRoverMode::STEERING     ,true);
    supportedFlightModes << APMRoverMode(APMRoverMode::HOLD         ,true);
Don Gagne's avatar
Don Gagne committed
43
    supportedFlightModes << APMRoverMode(APMRoverMode::LOITER       ,true);
Don Gagne's avatar
Don Gagne committed
44
    supportedFlightModes << APMRoverMode(APMRoverMode::FOLLOW       ,true);
Don Gagne's avatar
Don Gagne committed
45
    supportedFlightModes << APMRoverMode(APMRoverMode::SIMPLE       ,true);
46 47
    supportedFlightModes << APMRoverMode(APMRoverMode::AUTO         ,true);
    supportedFlightModes << APMRoverMode(APMRoverMode::RTL          ,true);
Don Gagne's avatar
Don Gagne committed
48
    supportedFlightModes << APMRoverMode(APMRoverMode::SMART_RTL    ,true);
49 50 51
    supportedFlightModes << APMRoverMode(APMRoverMode::GUIDED       ,true);
    supportedFlightModes << APMRoverMode(APMRoverMode::INITIALIZING ,false);
    setSupportedModes(supportedFlightModes);
52 53

    if (!_remapParamNameIntialized) {
54 55 56 57 58
        FirmwarePlugin::remapParamNameMap_t& remapV3_5 = _remapParamName[3][5];

        remapV3_5["BATT_ARM_VOLT"] =    QStringLiteral("ARMING_VOLT_MIN");
        remapV3_5["BATT2_ARM_VOLT"] =   QStringLiteral("ARMING_VOLT2_MIN");

59 60
        _remapParamNameIntialized = true;
    }
61
}
62 63 64

int ArduRoverFirmwarePlugin::remapParamNameHigestMinorVersionNumber(int majorVersionNumber) const
{
65 66
    // Remapping supports up to 3.5
    return majorVersionNumber == 3 ? 5 : Vehicle::versionNotSetValue;
67 68
}

69 70 71 72 73 74 75
void ArduRoverFirmwarePlugin::guidedModeChangeAltitude(Vehicle* vehicle, double altitudeChange)
{
    Q_UNUSED(vehicle);
    Q_UNUSED(altitudeChange);

    qgcApp()->showMessage(QStringLiteral("Change altitude not supported."));
}
76

77
bool ArduRoverFirmwarePlugin::supportsNegativeThrust(Vehicle* /*vehicle*/)
78 79 80
{
    return true;
}