/*===================================================================== QGroundControl Open Source Ground Control Station (c) 2009 - 2014 QGROUNDCONTROL PROJECT This file is part of the QGROUNDCONTROL project QGROUNDCONTROL is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. QGROUNDCONTROL is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with QGROUNDCONTROL. If not, see . ======================================================================*/ /// @file /// @author Don Gagne #include "SensorsComponent.h" #include "QGCPX4SensorCalibration.h" #include "PX4AutoPilotPlugin.h" // These two list must be kept in sync /// @brief Parameters which signal a change in setupComplete state static const char* triggerParamsV1[] = { "SENS_MAG_XOFF", "SENS_GYRO_XOFF", "SENS_ACC_XOFF", "SENS_DPRES_OFF", NULL }; static const char* triggerParamsV2[] = { "CAL_MAG0_ID", "CAL_GYRO0_ID", "CAL_ACC0_ID", "SENS_DPRES_OFF", NULL }; SensorsComponent::SensorsComponent(UASInterface* uas, AutoPilotPlugin* autopilot, QObject* parent) : PX4Component(uas, autopilot, parent), _name(tr("Sensors")) { // Determine what set of parameters are available. This is a temporary hack for now. Will need real parameter // mapping in the future. QVariant value; _paramsV1 = _paramMgr->getParameterValue(_paramMgr->getDefaultComponentId(), "SENS_MAG_XOFF", value); } QString SensorsComponent::name(void) const { return _name; } QString SensorsComponent::description(void) const { return tr("The Sensors Component allows you to calibrate the sensors within your vehicle. " "Prior to flight you must calibrate the Magnetometer, Gyroscope and Accelerometer."); } QString SensorsComponent::iconResource(void) const { return "SensorsComponentIcon.png"; } bool SensorsComponent::requiresSetup(void) const { return true; } bool SensorsComponent::setupComplete(void) const { const char** prgTriggers = setupCompleteChangedTriggerList(); Q_ASSERT(prgTriggers); while (*prgTriggers != NULL) { QVariant value; if (!_paramMgr->getParameterValue(_paramMgr->getDefaultComponentId(), *prgTriggers, value)) { Q_ASSERT(false); return false; } if (value.toFloat() == 0.0f) { return false; } prgTriggers++; } return true; } QString SensorsComponent::setupStateDescription(void) const { const char* stateDescription; if (requiresSetup()) { stateDescription = "Requires calibration"; } else { stateDescription = "Calibrated"; } return QString(stateDescription); } const char** SensorsComponent::setupCompleteChangedTriggerList(void) const { return _paramsV1 ? triggerParamsV1 : triggerParamsV2; } QStringList SensorsComponent::paramFilterList(void) const { QStringList list; if (_paramsV1) { list << "SENS_*"; } else { list << "CAL_*"; } return list; } QWidget* SensorsComponent::setupWidget(void) const { return new QGCPX4SensorCalibration; } QUrl SensorsComponent::summaryQmlSource(void) const { return QUrl::fromUserInput("qrc:/qml/SensorsComponentSummary.qml"); } QString SensorsComponent::prerequisiteSetup(void) const { PX4AutoPilotPlugin* plugin = dynamic_cast(_autopilot); Q_ASSERT(plugin); if (!plugin->airframeComponent()->setupComplete()) { return plugin->airframeComponent()->name(); } return QString(); }