2011-02-22 22:03:32 +00:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
*
|
2013-05-01 12:59:07 +02:00
|
|
|
* @file configstabilizationwidget.cpp
|
2011-02-22 22:03:32 +00:00
|
|
|
* @author E. Lafargue & The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
|
|
|
* @addtogroup GCSPlugins GCS Plugins
|
|
|
|
* @{
|
|
|
|
* @addtogroup ConfigPlugin Config Plugin
|
|
|
|
* @{
|
|
|
|
* @brief The Configuration Gadget used to update settings in the firmware
|
|
|
|
*****************************************************************************/
|
|
|
|
/*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* This program 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 this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
#include "configstabilizationwidget.h"
|
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QtGui/QWidget>
|
|
|
|
#include <QtGui/QTextEdit>
|
|
|
|
#include <QtGui/QVBoxLayout>
|
|
|
|
#include <QtGui/QPushButton>
|
2011-05-31 00:16:01 -07:00
|
|
|
#include <QDesktopServices>
|
|
|
|
#include <QUrl>
|
2012-02-02 16:22:40 +00:00
|
|
|
#include <QList>
|
2011-02-22 22:03:32 +00:00
|
|
|
|
2012-07-21 10:58:05 -07:00
|
|
|
#include <extensionsystem/pluginmanager.h>
|
|
|
|
#include <coreplugin/generalsettings.h>
|
2013-06-25 12:21:16 +02:00
|
|
|
#include "altitudeholdsettings.h"
|
2012-07-21 10:58:05 -07:00
|
|
|
|
2013-06-25 12:21:16 +02:00
|
|
|
ConfigStabilizationWidget::ConfigStabilizationWidget(QWidget *parent) : ConfigTaskWidget(parent),
|
|
|
|
boardModel(0)
|
2011-02-22 22:03:32 +00:00
|
|
|
{
|
2013-05-04 00:13:15 +02:00
|
|
|
ui = new Ui_StabilizationWidget();
|
|
|
|
ui->setupUi(this);
|
2012-05-15 16:24:49 -05:00
|
|
|
|
2012-07-21 10:58:05 -07:00
|
|
|
|
2013-05-05 12:45:35 +02:00
|
|
|
ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance();
|
|
|
|
Core::Internal::GeneralSettings *settings = pm->getObject<Core::Internal::GeneralSettings>();
|
|
|
|
|
|
|
|
if (!settings->useExpertMode()) {
|
2013-05-04 00:13:15 +02:00
|
|
|
ui->saveStabilizationToRAM_6->setVisible(false);
|
2013-05-01 12:59:07 +02:00
|
|
|
}
|
2012-05-15 16:24:49 -05:00
|
|
|
|
2012-02-06 17:33:54 +00:00
|
|
|
autoLoadWidgets();
|
2012-02-10 16:34:07 +00:00
|
|
|
|
2013-05-04 00:13:15 +02:00
|
|
|
realtimeUpdates = new QTimer(this);
|
2013-05-01 12:59:07 +02:00
|
|
|
connect(realtimeUpdates, SIGNAL(timeout()), this, SLOT(apply()));
|
2012-02-10 16:34:07 +00:00
|
|
|
|
2013-05-05 12:45:35 +02:00
|
|
|
connect(ui->realTimeUpdates_6, SIGNAL(toggled(bool)), this, SLOT(realtimeUpdatesSlot(bool)));
|
2013-05-04 00:13:15 +02:00
|
|
|
addWidget(ui->realTimeUpdates_6);
|
2013-05-05 12:45:35 +02:00
|
|
|
connect(ui->realTimeUpdates_8, SIGNAL(toggled(bool)), this, SLOT(realtimeUpdatesSlot(bool)));
|
2013-05-04 00:13:15 +02:00
|
|
|
addWidget(ui->realTimeUpdates_8);
|
2013-05-05 22:20:48 +02:00
|
|
|
connect(ui->realTimeUpdates_12, SIGNAL(toggled(bool)), this, SLOT(realtimeUpdatesSlot(bool)));
|
|
|
|
addWidget(ui->realTimeUpdates_12);
|
2013-05-04 00:13:15 +02:00
|
|
|
|
2013-05-05 12:45:35 +02:00
|
|
|
connect(ui->checkBox_7, SIGNAL(toggled(bool)), this, SLOT(linkCheckBoxes(bool)));
|
2013-05-04 00:13:15 +02:00
|
|
|
addWidget(ui->checkBox_7);
|
2013-05-05 12:45:35 +02:00
|
|
|
connect(ui->checkBox_2, SIGNAL(toggled(bool)), this, SLOT(linkCheckBoxes(bool)));
|
2013-05-04 00:13:15 +02:00
|
|
|
addWidget(ui->checkBox_2);
|
2013-05-05 12:45:35 +02:00
|
|
|
connect(ui->checkBox_8, SIGNAL(toggled(bool)), this, SLOT(linkCheckBoxes(bool)));
|
2013-05-04 00:13:15 +02:00
|
|
|
addWidget(ui->checkBox_8);
|
2013-05-05 12:45:35 +02:00
|
|
|
connect(ui->checkBox_3, SIGNAL(toggled(bool)), this, SLOT(linkCheckBoxes(bool)));
|
2013-05-04 00:13:15 +02:00
|
|
|
addWidget(ui->checkBox_3);
|
|
|
|
|
|
|
|
addWidget(ui->pushButton_2);
|
|
|
|
addWidget(ui->pushButton_3);
|
|
|
|
addWidget(ui->pushButton_4);
|
|
|
|
addWidget(ui->pushButton_5);
|
|
|
|
addWidget(ui->pushButton_6);
|
|
|
|
addWidget(ui->pushButton_9);
|
|
|
|
addWidget(ui->pushButton_20);
|
|
|
|
addWidget(ui->pushButton_22);
|
|
|
|
addWidget(ui->pushButton_23);
|
2012-04-19 13:00:20 -04:00
|
|
|
|
2013-05-05 12:45:35 +02:00
|
|
|
addWidget(ui->basicResponsivenessGroupBox);
|
|
|
|
connect(ui->basicResponsivenessGroupBox, SIGNAL(toggled(bool)), this, SLOT(linkCheckBoxes(bool)));
|
|
|
|
addWidget(ui->advancedResponsivenessGroupBox);
|
|
|
|
connect(ui->advancedResponsivenessGroupBox, SIGNAL(toggled(bool)), this, SLOT(linkCheckBoxes(bool)));
|
|
|
|
|
|
|
|
connect(this, SIGNAL(widgetContentsChanged(QWidget *)), this, SLOT(processLinkedWidgets(QWidget *)));
|
2012-05-26 09:55:04 -05:00
|
|
|
|
2013-06-15 13:00:54 +02:00
|
|
|
connect(this, SIGNAL(autoPilotConnected()), this, SLOT(onBoardConnected()));
|
|
|
|
|
2013-05-01 12:59:07 +02:00
|
|
|
disableMouseWheelEvents();
|
2013-05-04 00:13:15 +02:00
|
|
|
updateEnableControls();
|
2011-02-22 22:03:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ConfigStabilizationWidget::~ConfigStabilizationWidget()
|
|
|
|
{
|
2012-02-10 16:34:07 +00:00
|
|
|
// Do nothing
|
|
|
|
}
|
|
|
|
|
2013-05-05 12:45:35 +02:00
|
|
|
void ConfigStabilizationWidget::refreshWidgetsValues(UAVObject *o)
|
|
|
|
{
|
|
|
|
ConfigTaskWidget::refreshWidgetsValues(o);
|
|
|
|
|
|
|
|
ui->basicResponsivenessGroupBox->setChecked(ui->rateRollKp_3->value() == ui->ratePitchKp_4->value() &&
|
|
|
|
ui->rateRollKi_3->value() == ui->ratePitchKi_4->value());
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigStabilizationWidget::realtimeUpdatesSlot(bool value)
|
2012-02-10 16:34:07 +00:00
|
|
|
{
|
2013-05-05 12:45:35 +02:00
|
|
|
ui->realTimeUpdates_6->setChecked(value);
|
|
|
|
ui->realTimeUpdates_8->setChecked(value);
|
2013-05-05 22:20:48 +02:00
|
|
|
ui->realTimeUpdates_12->setChecked(value);
|
2013-05-01 12:59:07 +02:00
|
|
|
|
2013-05-05 12:45:35 +02:00
|
|
|
if (value && !realtimeUpdates->isActive()) {
|
2013-05-05 18:48:48 +02:00
|
|
|
realtimeUpdates->start(AUTOMATIC_UPDATE_RATE);
|
|
|
|
qDebug() << "Instant Update timer started.";
|
|
|
|
} else if (!value && realtimeUpdates->isActive()) {
|
2012-02-10 16:34:07 +00:00
|
|
|
realtimeUpdates->stop();
|
2013-05-05 18:48:48 +02:00
|
|
|
qDebug() << "Instant Update timer stopped.";
|
2013-05-01 12:59:07 +02:00
|
|
|
}
|
2012-02-10 16:34:07 +00:00
|
|
|
}
|
|
|
|
|
2013-05-05 12:45:35 +02:00
|
|
|
void ConfigStabilizationWidget::linkCheckBoxes(bool value)
|
2012-02-10 16:34:07 +00:00
|
|
|
{
|
2013-05-05 12:45:35 +02:00
|
|
|
if (sender() == ui->checkBox_7) {
|
|
|
|
ui->checkBox_3->setChecked(value);
|
|
|
|
} else if (sender() == ui->checkBox_3) {
|
|
|
|
ui->checkBox_7->setChecked(value);
|
|
|
|
} else if (sender() == ui->checkBox_8) {
|
|
|
|
ui->checkBox_2->setChecked(value);
|
|
|
|
} else if (sender() == ui->checkBox_2) {
|
|
|
|
ui->checkBox_8->setChecked(value);
|
|
|
|
} else if (sender() == ui->basicResponsivenessGroupBox) {
|
|
|
|
ui->advancedResponsivenessGroupBox->setChecked(!value);
|
2013-05-05 18:48:48 +02:00
|
|
|
if (value) {
|
2013-05-05 12:45:35 +02:00
|
|
|
processLinkedWidgets(ui->AttitudeResponsivenessSlider);
|
|
|
|
processLinkedWidgets(ui->RateResponsivenessSlider);
|
|
|
|
}
|
|
|
|
} else if (sender() == ui->advancedResponsivenessGroupBox) {
|
|
|
|
ui->basicResponsivenessGroupBox->setChecked(!value);
|
2013-05-01 12:59:07 +02:00
|
|
|
}
|
2012-02-10 16:34:07 +00:00
|
|
|
}
|
|
|
|
|
2013-05-05 12:45:35 +02:00
|
|
|
void ConfigStabilizationWidget::processLinkedWidgets(QWidget *widget)
|
2012-02-10 16:34:07 +00:00
|
|
|
{
|
2013-05-05 12:45:35 +02:00
|
|
|
if (ui->checkBox_7->isChecked()) {
|
|
|
|
if (widget == ui->RateRollKp_2) {
|
2013-05-04 00:13:15 +02:00
|
|
|
ui->RatePitchKp->setValue(ui->RateRollKp_2->value());
|
2013-05-05 12:45:35 +02:00
|
|
|
} else if (widget == ui->RateRollKi_2) {
|
2013-05-04 00:13:15 +02:00
|
|
|
ui->RatePitchKi->setValue(ui->RateRollKi_2->value());
|
2013-05-05 12:45:35 +02:00
|
|
|
} else if (widget == ui->RateRollILimit_2) {
|
2013-05-04 00:13:15 +02:00
|
|
|
ui->RatePitchILimit->setValue(ui->RateRollILimit_2->value());
|
2013-05-05 12:45:35 +02:00
|
|
|
} else if (widget == ui->RatePitchKp) {
|
2013-05-04 00:13:15 +02:00
|
|
|
ui->RateRollKp_2->setValue(ui->RatePitchKp->value());
|
2013-05-05 12:45:35 +02:00
|
|
|
} else if (widget == ui->RatePitchKi) {
|
2013-05-04 00:13:15 +02:00
|
|
|
ui->RateRollKi_2->setValue(ui->RatePitchKi->value());
|
2013-05-05 12:45:35 +02:00
|
|
|
} else if (widget == ui->RatePitchILimit) {
|
2013-05-04 00:13:15 +02:00
|
|
|
ui->RateRollILimit_2->setValue(ui->RatePitchILimit->value());
|
2013-05-05 12:45:35 +02:00
|
|
|
} else if (widget == ui->RollRateKd) {
|
2013-05-04 00:13:15 +02:00
|
|
|
ui->PitchRateKd->setValue(ui->RollRateKd->value());
|
2013-05-05 12:45:35 +02:00
|
|
|
} else if (widget == ui->PitchRateKd) {
|
2013-05-04 00:13:15 +02:00
|
|
|
ui->RollRateKd->setValue(ui->PitchRateKd->value());
|
2012-07-27 11:55:01 +01:00
|
|
|
}
|
2012-02-10 16:34:07 +00:00
|
|
|
}
|
2013-05-05 12:45:35 +02:00
|
|
|
|
|
|
|
if (ui->checkBox_8->isChecked()) {
|
|
|
|
if (widget == ui->AttitudeRollKp) {
|
2013-05-04 00:13:15 +02:00
|
|
|
ui->AttitudePitchKp_2->setValue(ui->AttitudeRollKp->value());
|
2013-05-05 12:45:35 +02:00
|
|
|
} else if (widget == ui->AttitudeRollKi) {
|
2013-05-04 00:13:15 +02:00
|
|
|
ui->AttitudePitchKi_2->setValue(ui->AttitudeRollKi->value());
|
2013-05-05 12:45:35 +02:00
|
|
|
} else if (widget == ui->AttitudeRollILimit) {
|
2013-05-04 00:13:15 +02:00
|
|
|
ui->AttitudePitchILimit_2->setValue(ui->AttitudeRollILimit->value());
|
2013-05-05 12:45:35 +02:00
|
|
|
} else if (widget == ui->AttitudePitchKp_2) {
|
2013-05-04 00:13:15 +02:00
|
|
|
ui->AttitudeRollKp->setValue(ui->AttitudePitchKp_2->value());
|
2013-05-05 12:45:35 +02:00
|
|
|
} else if (widget == ui->AttitudePitchKi_2) {
|
2013-05-04 00:13:15 +02:00
|
|
|
ui->AttitudeRollKi->setValue(ui->AttitudePitchKi_2->value());
|
2013-05-05 12:45:35 +02:00
|
|
|
} else if (widget == ui->AttitudePitchILimit_2) {
|
2013-05-04 00:13:15 +02:00
|
|
|
ui->AttitudeRollILimit->setValue(ui->AttitudePitchILimit_2->value());
|
2012-02-10 16:34:07 +00:00
|
|
|
}
|
|
|
|
}
|
2013-05-04 00:13:15 +02:00
|
|
|
|
2013-05-05 18:48:48 +02:00
|
|
|
if (ui->basicResponsivenessGroupBox->isChecked()) {
|
2013-05-05 12:45:35 +02:00
|
|
|
if (widget == ui->AttitudeResponsivenessSlider) {
|
|
|
|
ui->ratePitchKp_4->setValue(ui->AttitudeResponsivenessSlider->value());
|
|
|
|
} else if (widget == ui->RateResponsivenessSlider) {
|
|
|
|
ui->ratePitchKi_4->setValue(ui->RateResponsivenessSlider->value());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-06-15 13:00:54 +02:00
|
|
|
|
|
|
|
void ConfigStabilizationWidget::onBoardConnected()
|
|
|
|
{
|
|
|
|
ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance();
|
2013-06-22 14:24:47 +03:00
|
|
|
UAVObjectUtilManager *utilMngr = pm->getObject<UAVObjectUtilManager>();
|
|
|
|
|
2013-06-15 13:00:54 +02:00
|
|
|
Q_ASSERT(utilMngr);
|
2013-06-25 12:21:16 +02:00
|
|
|
boardModel = utilMngr->getBoardModel();
|
2013-06-15 13:00:54 +02:00
|
|
|
// If Revolution board enable misc tab, otherwise disable it
|
2013-06-25 12:21:16 +02:00
|
|
|
ui->AltitudeHold->setEnabled((boardModel & 0xff00) == 0x0900);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ConfigStabilizationWidget::shouldObjectBeSaved(UAVObject *object)
|
|
|
|
{
|
|
|
|
// AltitudeHoldSettings should only be saved for Revolution board to avoid error.
|
|
|
|
if((boardModel & 0xff00) != 0x0900) {
|
|
|
|
return dynamic_cast<AltitudeHoldSettings*>(object) == 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return true;
|
|
|
|
}
|
2013-06-15 13:00:54 +02:00
|
|
|
}
|