SensorsComponent.cc 3.52 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

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

#include "SensorsComponent.h"
Don Gagne's avatar
Don Gagne committed
15
#include "PX4AutoPilotPlugin.h"
Don Gagne's avatar
Don Gagne committed
16 17
#include "QGCQmlWidgetHolder.h"
#include "SensorsComponentController.h"
18

Don Gagne's avatar
Don Gagne committed
19 20 21
const char* SensorsComponent::_airspeedBreakerParam =   "CBRK_AIRSPD_CHK";
const char* SensorsComponent::_airspeedDisabledParam =  "FW_ARSP_MODE";
const char* SensorsComponent::_airspeedCalParam =       "SENS_DPRES_OFF";
22

23
const char* SensorsComponent::_magEnabledParam =  "SYS_HAS_MAG";
24 25
const char* SensorsComponent::_magCalParam =  "CAL_MAG0_ID";

26
SensorsComponent::SensorsComponent(Vehicle* vehicle, AutoPilotPlugin* autopilot, QObject* parent) :
27
    VehicleComponent(vehicle, autopilot, parent),
28 29
    _name(tr("Sensors"))
{
30
    _deviceIds << QStringLiteral("CAL_GYRO0_ID") << QStringLiteral("CAL_ACC0_ID");
31 32 33 34 35 36 37 38 39
}

QString SensorsComponent::name(void) const
{
    return _name;
}

QString SensorsComponent::description(void) const
{
40
    return tr("Sensors Setup is used to calibrate the sensors within your vehicle.");
41 42
}

43
QString SensorsComponent::iconResource(void) const
44
{
45
    return "/qmlimages/SensorsComponentIcon.png";
46 47 48 49 50 51 52 53 54
}

bool SensorsComponent::requiresSetup(void) const
{
    return true;
}

bool SensorsComponent::setupComplete(void) const
{
55
    foreach (const QString &triggerParam, _deviceIds) {
56
        if (_vehicle->parameterManager()->getParameter(FactSystem::defaultComponentId, triggerParam)->rawValue().toFloat() == 0.0f) {
57 58 59
            return false;
        }
    }
60 61 62 63 64 65
    bool magEnabled = true;
    if (_vehicle->parameterManager()->parameterExists(FactSystem::defaultComponentId, _magEnabledParam)) {
        magEnabled = _vehicle->parameterManager()->getParameter(FactSystem::defaultComponentId, _magEnabledParam)->rawValue().toBool();
    }

    if (magEnabled && _vehicle->parameterManager()->getParameter(FactSystem::defaultComponentId, _magCalParam)->rawValue().toFloat() == 0.0f) {
66 67
        return false;
    }
68

69
    if (_vehicle->fixedWing() || _vehicle->vtol()) {
Don Gagne's avatar
Don Gagne committed
70 71 72 73
        if (!_vehicle->parameterManager()->getParameter(FactSystem::defaultComponentId, _airspeedDisabledParam)->rawValue().toBool() &&
                _vehicle->parameterManager()->getParameter(FactSystem::defaultComponentId, _airspeedBreakerParam)->rawValue().toInt() != 162128 &&
                _vehicle->parameterManager()->getParameter(FactSystem::defaultComponentId, _airspeedCalParam)->rawValue().toFloat() == 0.0f) {
            return false;
74 75 76
        }
    }

77 78 79
    return true;
}

Don Gagne's avatar
Don Gagne committed
80
QStringList SensorsComponent::setupCompleteChangedTriggerList(void) const
81
{
Don Gagne's avatar
Don Gagne committed
82 83
    QStringList triggers;
    
84
    triggers << _deviceIds << _magCalParam << _magEnabledParam;
85
    if (_vehicle->fixedWing() || _vehicle->vtol()) {
Don Gagne's avatar
Don Gagne committed
86
        triggers << _airspeedCalParam << _airspeedBreakerParam;
Don Gagne's avatar
Don Gagne committed
87 88 89
    }
    
    return triggers;
90 91
}

92
QUrl SensorsComponent::setupSource(void) const
93
{
94
    return QUrl::fromUserInput("qrc:/qml/SensorsComponent.qml");
95 96
}

97
QUrl SensorsComponent::summaryQmlSource(void) const
98
{
99 100
    QString summaryQml;
    
Don Gagne's avatar
Don Gagne committed
101 102 103 104
    if (_vehicle->fixedWing() || _vehicle->vtol()) {
        summaryQml = "qrc:/qml/SensorsComponentSummaryFixedWing.qml";
    } else {
        summaryQml = "qrc:/qml/SensorsComponentSummary.qml";
105 106 107
    }
    
    return QUrl::fromUserInput(summaryQml);
108
}