2011-02-22 23:03:32 +01:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* @file configstabilizationwidget.h
|
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
|
|
|
* @addtogroup GCSPlugins GCS Plugins
|
|
|
|
* @{
|
|
|
|
* @addtogroup ConfigPlugin Config Plugin
|
|
|
|
* @{
|
|
|
|
* @brief Stabilization configuration panel
|
|
|
|
*****************************************************************************/
|
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
#ifndef CONFIGSTABILIZATIONWIDGET_H
|
|
|
|
#define CONFIGSTABILIZATIONWIDGET_H
|
|
|
|
|
|
|
|
#include "ui_stabilization.h"
|
|
|
|
#include "configtaskwidget.h"
|
|
|
|
#include "extensionsystem/pluginmanager.h"
|
|
|
|
#include "uavobjectmanager.h"
|
|
|
|
#include "uavobject.h"
|
2011-02-24 00:06:35 +01:00
|
|
|
#include "stabilizationsettings.h"
|
2011-02-22 23:03:32 +01:00
|
|
|
#include <QtGui/QWidget>
|
2011-02-25 22:17:07 +01:00
|
|
|
#include <QTimer>
|
2011-02-22 23:03:32 +01:00
|
|
|
|
|
|
|
|
|
|
|
class ConfigStabilizationWidget: public ConfigTaskWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
ConfigStabilizationWidget(QWidget *parent = 0);
|
|
|
|
~ConfigStabilizationWidget();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui_StabilizationWidget *m_stabilization;
|
2011-02-24 00:06:35 +01:00
|
|
|
StabilizationSettings* stabSettings;
|
2011-02-25 22:17:07 +01:00
|
|
|
QTimer updateTimer;
|
|
|
|
|
2011-02-22 23:03:32 +01:00
|
|
|
private slots:
|
|
|
|
void requestStabilizationUpdate();
|
2011-02-24 00:06:35 +01:00
|
|
|
void sendStabilizationUpdate();
|
|
|
|
void saveStabilizationUpdate();
|
2011-02-25 22:17:07 +01:00
|
|
|
void realtimeUpdateToggle(bool);
|
|
|
|
|
|
|
|
void updateRateRollKP(double);
|
|
|
|
void updateRateRollKI(double);
|
|
|
|
void updateRateRollILimit(double);
|
|
|
|
|
|
|
|
void updateRatePitchKP(double);
|
|
|
|
void updateRatePitchKI(double);
|
|
|
|
void updateRatePitchILimit(double);
|
|
|
|
|
|
|
|
void updateRollKP(double);
|
|
|
|
void updateRollKI(double);
|
|
|
|
void updateRollILimit(double);
|
|
|
|
|
|
|
|
void updatePitchKP(double);
|
|
|
|
void updatePitchKI(double);
|
|
|
|
void updatePitchILimit(double);
|
2011-02-22 23:03:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ConfigStabilizationWidget_H
|