Newer
Older
/*=====================================================================
QGroundControl Open Source Ground Control Station
(c) 2009, 2010 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
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 <http://www.gnu.org/licenses/>.
======================================================================*/
/**
* @file
* @brief Implementation of SerialConfigurationWindow
* @author Lorenz Meier <mavteam@student.ethz.ch>
*
*/
#include <QDebug>
#include <SerialConfigurationWindow.h>
#include <SerialLinkInterface.h>
#include <QDir>
#include <QFileInfoList>
SerialConfigurationWindow::SerialConfigurationWindow(LinkInterface* link, QWidget *parent, Qt::WindowFlags flags) : QWidget(parent, flags),
{
SerialLinkInterface* serialLink = dynamic_cast<SerialLinkInterface*>(link);
if(serialLink != 0)
{
serialLink->loadSettings();
this->link = serialLink;
// Setup the user interface according to link type
ui.setupUi(this);
// Create action to open this menu
// Create configuration action for this link
// Connect the current UAS
action = new QAction(QIcon(":/images/devices/network-wireless.svg"), "", link);
setLinkName(link->getName());
setupPortList();
// Set up baud rates
ui.baudRate->clear();
ui.baudRate->addItem("50", 50);
ui.baudRate->addItem("70", 70);
ui.baudRate->addItem("110", 110);
ui.baudRate->addItem("134", 134);
ui.baudRate->addItem("150", 150);
ui.baudRate->addItem("200", 200);
ui.baudRate->addItem("300", 300);
ui.baudRate->addItem("600", 600);
ui.baudRate->addItem("1200", 1200);
ui.baudRate->addItem("1800", 1800);
ui.baudRate->addItem("2400", 2400);
ui.baudRate->addItem("4800", 4800);
ui.baudRate->addItem("9600", 9600);
#ifdef Q_OS_WIN
ui.baudRate->addItem("14400", 14400);
#endif
ui.baudRate->addItem("19200", 19200);
#ifdef Q_OS_WIN
ui.baudRate->addItem("56000", 56000);
#endif
ui.baudRate->addItem("57600", 57600);
#ifdef Q_OS_WIN
ui.baudRate->addItem("76800", 76800);
#endif
ui.baudRate->addItem("115200", 115200);
#ifdef Q_OS_WIN
ui.baudRate->addItem("128000", 128000);
ui.baudRate->addItem("230400", 230400);
ui.baudRate->addItem("256000", 256000);
ui.baudRate->addItem("460800", 460800);
#endif
ui.baudRate->addItem("921600", 921600);
connect(action, SIGNAL(triggered()), this, SLOT(configureCommunication()));
// Make sure that a change in the link name will be reflected in the UI
connect(link, SIGNAL(nameChanged(QString)), this, SLOT(setLinkName(QString)));
// Connect the individual user interface inputs
connect(ui.portName, SIGNAL(editTextChanged(QString)), this, SLOT(setPortName(QString)));
connect(ui.portName, SIGNAL(currentIndexChanged(QString)), this, SLOT(setPortName(QString)));
connect(ui.baudRate, SIGNAL(activated(QString)), this->link, SLOT(setBaudRateString(QString)));
connect(ui.flowControlCheckBox, SIGNAL(toggled(bool)), this, SLOT(enableFlowControl(bool)));
connect(ui.parNone, SIGNAL(toggled(bool)), this, SLOT(setParityNone(bool)));
connect(ui.parOdd, SIGNAL(toggled(bool)), this, SLOT(setParityOdd(bool)));
connect(ui.parEven, SIGNAL(toggled(bool)), this, SLOT(setParityEven(bool)));
connect(ui.dataBitsSpinBox, SIGNAL(valueChanged(int)), this->link, SLOT(setDataBits(int)));
connect(ui.stopBitsSpinBox, SIGNAL(valueChanged(int)), this->link, SLOT(setStopBits(int)));
//connect(this->link, SIGNAL(connected(bool)), this, SLOT());
ui.portName->setSizeAdjustPolicy(QComboBox::AdjustToContentsOnFirstShow);
ui.baudRate->setSizeAdjustPolicy(QComboBox::AdjustToContentsOnFirstShow);
switch(this->link->getParityType()) {
case 0:
ui.parNone->setChecked(true);
break;
case 1:
ui.parOdd->setChecked(true);
break;
case 2:
ui.parEven->setChecked(true);
break;
default:
// Enforce default: no parity in link
ui.parNone->setChecked(true);
break;
}
switch(this->link->getFlowType()) {
case 0:
ui.flowControlCheckBox->setChecked(false);
break;
case 1:
ui.flowControlCheckBox->setChecked(true);
break;
default:
ui.flowControlCheckBox->setChecked(false);
enableFlowControl(false);
}
ui.baudRate->setCurrentIndex(ui.baudRate->findText(QString("%1").arg(this->link->getBaudRate())));
ui.dataBitsSpinBox->setValue(this->link->getDataBits());
ui.stopBitsSpinBox->setValue(this->link->getStopBits());
portCheckTimer = new QTimer(this);
portCheckTimer->setInterval(1000);
connect(portCheckTimer, SIGNAL(timeout()), this, SLOT(setupPortList()));
// Display the widget
this->window()->setWindowTitle(tr("Serial Communication Settings"));
}
else
{
qDebug() << "Link is NOT a serial link, can't open configuration window";
}
}
SerialConfigurationWindow::~SerialConfigurationWindow()
{
}
void SerialConfigurationWindow::showEvent(QShowEvent* event)
{
Q_UNUSED(event);
portCheckTimer->start();
}
void SerialConfigurationWindow::hideEvent(QHideEvent* event)
{
Q_UNUSED(event);
portCheckTimer->stop();
}
QAction* SerialConfigurationWindow::getAction()
{
return action;
}
void SerialConfigurationWindow::configureCommunication()
{
QString selected = ui.portName->currentText();
setupPortList();
ui.portName->setEditText(selected);
this->show();
}
void SerialConfigurationWindow::setupPortList()
{
if (!link) return;
if (!userConfigured)
{
ui.portName->clear();
ui.portName->clearEditText();
QVector<QString>* ports = link->getCurrentPorts();
// Add the ports in reverse order, because we prepend them to the list
for (int i = ports->size() - 1; i >= 0; --i)
{
if (ui.portName->findText(ports->at(i)) == -1)
{
ui.portName->insertItem(0, ports->at(i));
if (!userConfigured) ui.portName->setEditText(ports->at(i));
ui.portName->setEditText(this->link->getPortName());
}
void SerialConfigurationWindow::enableFlowControl(bool flow)
{
}
else
{
void SerialConfigurationWindow::setParityNone(bool accept)
void SerialConfigurationWindow::setParityOdd(bool accept)
void SerialConfigurationWindow::setParityEven(bool accept)
}
void SerialConfigurationWindow::setPortName(QString port)
{
pixhawk
committed
#endif
if (this->link->getPortName() != port) {
link->setPortName(port);
}
userConfigured = true;
}
void SerialConfigurationWindow::setLinkName(QString name)
{