2011-03-29 22:32:09 +02:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* @file configtelemetrywidget.h
|
|
|
|
* @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
|
|
|
|
*/
|
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);
|
|
|
|
|
|
|
|
// Now connect the widget to the ManualControlCommand / Channel UAVObject
|
|
|
|
ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance();
|
|
|
|
UAVObjectManager *objManager = pm->getObject<UAVObjectManager>();
|
|
|
|
|
2011-06-05 18:40:52 +02:00
|
|
|
UAVObject *obj = objManager->getObject(QString("TelemetrySettings"));
|
2011-03-29 22:32:09 +02:00
|
|
|
UAVObjectField *field = obj->getField(QString("Speed"));
|
|
|
|
m_telemetry->telemetrySpeed->addItems(field->getOptions());
|
|
|
|
|
|
|
|
connect(m_telemetry->saveTelemetryToSD, SIGNAL(clicked()), this, SLOT(saveTelemetryUpdate()));
|
|
|
|
connect(m_telemetry->saveTelemetryToRAM, SIGNAL(clicked()), this, SLOT(sendTelemetryUpdate()));
|
2011-06-07 16:56:16 +02:00
|
|
|
connect(obj, SIGNAL(objectUpdated(UAVObject*)), this, SLOT(refreshValues()));
|
2011-03-29 22:32:09 +02:00
|
|
|
|
2011-06-07 16:56:16 +02:00
|
|
|
enableControls(false);
|
|
|
|
refreshValues();
|
|
|
|
connect(parent, SIGNAL(autopilotConnected()),this, SLOT(onAutopilotConnect()));
|
|
|
|
connect(parent, SIGNAL(autopilotDisconnected()),this, SLOT(onAutopilotDisconnect()));
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************
|
|
|
|
* Telemetry Settings
|
|
|
|
*****************************/
|
|
|
|
|
2011-07-19 15:50:42 +02:00
|
|
|
void ConfigProHWWidget::enableControls(bool enable)
|
2011-06-07 16:56:16 +02:00
|
|
|
{
|
|
|
|
m_telemetry->saveTelemetryToSD->setEnabled(enable);
|
|
|
|
//m_telemetry->saveTelemetryToRAM->setEnabled(enable);
|
|
|
|
}
|
|
|
|
|
2011-03-29 22:32:09 +02:00
|
|
|
/**
|
|
|
|
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
|
|
|
{
|
|
|
|
ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance();
|
|
|
|
UAVObjectManager *objManager = pm->getObject<UAVObjectManager>();
|
|
|
|
UAVDataObject* obj = dynamic_cast<UAVDataObject*>(objManager->getObject(QString("TelemetrySettings")));
|
|
|
|
Q_ASSERT(obj);
|
|
|
|
UAVObjectField *field = obj->getField(QString("Speed"));
|
|
|
|
m_telemetry->telemetrySpeed->setCurrentIndex(m_telemetry->telemetrySpeed->findText(field->getValue().toString()));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Send telemetry settings to the board
|
|
|
|
*/
|
2011-07-19 15:50:42 +02:00
|
|
|
void ConfigProHWWidget::sendTelemetryUpdate()
|
2011-03-29 22:32:09 +02:00
|
|
|
{
|
2011-06-02 16:08:19 +02:00
|
|
|
UAVDataObject* obj = dynamic_cast<UAVDataObject*>(getObjectManager()->getObject(QString("TelemetrySettings")));
|
2011-03-29 22:32:09 +02:00
|
|
|
Q_ASSERT(obj);
|
|
|
|
UAVObjectField* field = obj->getField(QString("Speed"));
|
|
|
|
field->setValue(m_telemetry->telemetrySpeed->currentText());
|
|
|
|
obj->updated();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Send telemetry settings to the board and request saving to SD card
|
|
|
|
*/
|
2011-07-19 15:50:42 +02:00
|
|
|
void ConfigProHWWidget::saveTelemetryUpdate()
|
2011-03-29 22:32:09 +02:00
|
|
|
{
|
|
|
|
// Send update so that the latest value is saved
|
|
|
|
sendTelemetryUpdate();
|
2011-06-02 16:08:19 +02:00
|
|
|
UAVDataObject* obj = dynamic_cast<UAVDataObject*>(getObjectManager()->getObject(QString("TelemetrySettings")));
|
2011-03-29 22:32:09 +02:00
|
|
|
Q_ASSERT(obj);
|
2011-06-02 16:08:19 +02:00
|
|
|
saveObjectToSD(obj);
|
2011-03-29 22:32:09 +02:00
|
|
|
}
|