2011-03-29 22:32:09 +02:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* @file configtelemetrywidget.h
|
2011-08-20 20:10:28 +02:00
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
2011-03-29 22:32:09 +02:00
|
|
|
* @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
|
|
|
|
*/
|
2011-07-19 15:50:42 +02:00
|
|
|
#include "config_pro_hw_widget.h"
|
2011-03-29 22:32:09 +02:00
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QtGui/QWidget>
|
|
|
|
#include <QtGui/QTextEdit>
|
|
|
|
#include <QtGui/QVBoxLayout>
|
|
|
|
#include <QtGui/QPushButton>
|
|
|
|
|
|
|
|
|
2011-07-19 15:50:42 +02:00
|
|
|
ConfigProHWWidget::ConfigProHWWidget(QWidget *parent) : ConfigTaskWidget(parent)
|
2011-03-29 22:32:09 +02:00
|
|
|
{
|
2011-07-19 15:50:42 +02:00
|
|
|
m_telemetry = new Ui_PRO_HW_Widget();
|
2011-03-29 22:32:09 +02:00
|
|
|
m_telemetry->setupUi(this);
|
|
|
|
|
2012-02-02 17:22:40 +01:00
|
|
|
addApplySaveButtons(m_telemetry->saveTelemetryToRAM,m_telemetry->saveTelemetryToSD);
|
2011-09-28 21:09:19 +02:00
|
|
|
addUAVObjectToWidgetRelation("HwSettings","TelemetrySpeed",m_telemetry->telemetrySpeed);
|
2011-06-07 16:56:16 +02:00
|
|
|
enableControls(false);
|
2011-07-26 00:18:41 +02:00
|
|
|
populateWidgets();
|
2012-05-26 10:07:36 +02:00
|
|
|
refreshWidgetsValues(NULL);
|
2011-03-29 22:32:09 +02:00
|
|
|
}
|
|
|
|
|
2011-07-19 15:50:42 +02:00
|
|
|
ConfigProHWWidget::~ConfigProHWWidget()
|
2011-03-29 22:32:09 +02:00
|
|
|
{
|
|
|
|
// Do nothing
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Request telemetry settings from the board
|
|
|
|
*/
|
2011-07-19 15:50:42 +02:00
|
|
|
void ConfigProHWWidget::refreshValues()
|
2011-03-29 22:32:09 +02:00
|
|
|
{
|
|
|
|
}
|