QGCParamWidget.cc 42 KB
Newer Older
1 2 3 4
/*=====================================================================

QGroundControl Open Source Ground Control Station

pixhawk's avatar
pixhawk committed
5
(c) 2009, 2010 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27

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 class QGCParamWidget
 *   @author Lorenz Meier <mail@qgroundcontrol.org>
 */
Lorenz Meier's avatar
Lorenz Meier committed
28 29
#include <cmath>
#include <float.h>
30 31
#include <QGridLayout>
#include <QPushButton>
32 33
#include <QFileDialog>
#include <QFile>
34
#include <QList>
35
#include <QTime>
36
#include <QSettings>
37
#include <QMessageBox>
LM's avatar
LM committed
38
#include <QApplication>
pixhawk's avatar
pixhawk committed
39 40 41

#include "QGCParamWidget.h"
#include "UASInterface.h"
Lorenz Meier's avatar
Lorenz Meier committed
42
#include "MainWindow.h"
pixhawk's avatar
pixhawk committed
43
#include <QDebug>
44
#include "QGC.h"
pixhawk's avatar
pixhawk committed
45

46 47 48 49
/**
 * @param uas MAV to set the parameters on
 * @param parent Parent widget
 */
pixhawk's avatar
pixhawk committed
50
QGCParamWidget::QGCParamWidget(UASInterface* uas, QWidget *parent) :
51 52
    QGCUASParamManager(uas, parent),
    components(new QMap<int, QTreeWidgetItem*>())
pixhawk's avatar
pixhawk committed
53
{
54 55 56
    // Load settings
    loadSettings();

lm's avatar
lm committed
57 58 59
    // Load default values and tooltips
    loadParameterInfoCSV(uas->getAutopilotTypeName(), uas->getSystemTypeName());

pixhawk's avatar
pixhawk committed
60 61
    // Create tree widget
    tree = new QTreeWidget(this);
lm's avatar
lm committed
62
    statusLabel = new QLabel();
lm's avatar
lm committed
63
    statusLabel->setAutoFillBackground(true);
64
    tree->setColumnWidth(70, 30);
pixhawk's avatar
pixhawk committed
65 66

    // Set tree widget as widget onto this component
67
    QGridLayout* horizontalLayout;
pixhawk's avatar
pixhawk committed
68
    //form->setAutoFillBackground(false);
69
    horizontalLayout = new QGridLayout(this);
70 71
    horizontalLayout->setHorizontalSpacing(6);
    horizontalLayout->setVerticalSpacing(6);
pixhawk's avatar
pixhawk committed
72
    horizontalLayout->setMargin(0);
73 74
    horizontalLayout->setSizeConstraint(QLayout::SetMinimumSize);
    //horizontalLayout->setSizeConstraint( QLayout::SetFixedSize );
pixhawk's avatar
pixhawk committed
75

lm's avatar
lm committed
76
    // Parameter tree
77
    horizontalLayout->addWidget(tree, 0, 0, 1, 3);
lm's avatar
lm committed
78 79

    // Status line
lm's avatar
lm committed
80
    statusLabel->setText(tr("Click refresh to download parameters"));
lm's avatar
lm committed
81 82 83 84
    horizontalLayout->addWidget(statusLabel, 1, 0, 1, 3);


    // BUTTONS
Jessica's avatar
Jessica committed
85
    QPushButton* refreshButton = new QPushButton(tr("Get"));
86 87
    refreshButton->setToolTip(tr("Load parameters currently in non-permanent memory of aircraft."));
    refreshButton->setWhatsThis(tr("Load parameters currently in non-permanent memory of aircraft."));
88
    connect(refreshButton, SIGNAL(clicked()), this, SLOT(requestParameterList()));
lm's avatar
lm committed
89
    horizontalLayout->addWidget(refreshButton, 2, 0);
90

Jessica's avatar
Jessica committed
91
    QPushButton* setButton = new QPushButton(tr("Set"));
92 93
    setButton->setToolTip(tr("Set current parameters in non-permanent onboard memory"));
    setButton->setWhatsThis(tr("Set current parameters in non-permanent onboard memory"));
94
    connect(setButton, SIGNAL(clicked()), this, SLOT(setParameters()));
lm's avatar
lm committed
95
    horizontalLayout->addWidget(setButton, 2, 1);
96

97
    QPushButton* writeButton = new QPushButton(tr("Write (ROM)"));
98 99
    writeButton->setToolTip(tr("Copy current parameters in non-permanent memory of the aircraft to permanent memory. Transmit your parameters first to write these."));
    writeButton->setWhatsThis(tr("Copy current parameters in non-permanent memory of the aircraft to permanent memory. Transmit your parameters first to write these."));
100
    connect(writeButton, SIGNAL(clicked()), this, SLOT(writeParameters()));
lm's avatar
lm committed
101
    horizontalLayout->addWidget(writeButton, 2, 2);
102

103
    QPushButton* loadFileButton = new QPushButton(tr("Load File"));
104 105
    loadFileButton->setToolTip(tr("Load parameters from a file on this computer in the view. To write them to the aircraft, use transmit after loading them."));
    loadFileButton->setWhatsThis(tr("Load parameters from a file on this computer in the view. To write them to the aircraft, use transmit after loading them."));
106
    connect(loadFileButton, SIGNAL(clicked()), this, SLOT(loadParameters()));
lm's avatar
lm committed
107
    horizontalLayout->addWidget(loadFileButton, 3, 0);
108 109

    QPushButton* saveFileButton = new QPushButton(tr("Save File"));
110 111
    saveFileButton->setToolTip(tr("Save parameters in this view to a file on this computer."));
    saveFileButton->setWhatsThis(tr("Save parameters in this view to a file on this computer."));
112
    connect(saveFileButton, SIGNAL(clicked()), this, SLOT(saveParameters()));
lm's avatar
lm committed
113 114 115 116 117 118 119
    horizontalLayout->addWidget(saveFileButton, 3, 1);

    QPushButton* readButton = new QPushButton(tr("Read (ROM)"));
    readButton->setToolTip(tr("Copy parameters from permanent memory to non-permanent current memory of aircraft. DOES NOT update the parameters in this view, click refresh after copying them to get them."));
    readButton->setWhatsThis(tr("Copy parameters from permanent memory to non-permanent current memory of aircraft. DOES NOT update the parameters in this view, click refresh after copying them to get them."));
    connect(readButton, SIGNAL(clicked()), this, SLOT(readParameters()));
    horizontalLayout->addWidget(readButton, 3, 2);
120

121 122 123 124 125 126
    // Set correct vertical scaling
    horizontalLayout->setRowStretch(0, 100);
    horizontalLayout->setRowStretch(1, 10);
    horizontalLayout->setRowStretch(2, 10);
    horizontalLayout->setRowStretch(3, 10);

127
    // Set layout
pixhawk's avatar
pixhawk committed
128 129 130 131 132 133 134 135
    this->setLayout(horizontalLayout);

    // Set header
    QStringList headerItems;
    headerItems.append("Parameter");
    headerItems.append("Value");
    tree->setHeaderLabels(headerItems);
    tree->setColumnCount(2);
136
    tree->setExpandsOnDoubleClick(true);
137 138

    // Connect signals/slots
139
    connect(this, SIGNAL(parameterChanged(int,QString,QVariant)), mav, SLOT(setParameter(int,QString,QVariant)));
140
    connect(tree, SIGNAL(itemChanged(QTreeWidgetItem*,int)), this, SLOT(parameterItemChanged(QTreeWidgetItem*,int)));
lm's avatar
lm committed
141

142
    // New parameters from UAS
143
    connect(uas, SIGNAL(parameterChanged(int,int,int,int,QString,QVariant)), this, SLOT(addParameter(int,int,int,int,QString,QVariant)));
144 145

    // Connect retransmission guard
146
    connect(this, SIGNAL(requestParameter(int,QString)), uas, SLOT(requestParameter(int,QString)));
147 148
    connect(this, SIGNAL(requestParameter(int,int)), uas, SLOT(requestParameter(int,int)));
    connect(&retransmissionTimer, SIGNAL(timeout()), this, SLOT(retransmissionGuardTick()));
149 150

    // Get parameters
151
    if (uas) requestParameterList();
pixhawk's avatar
pixhawk committed
152 153
}

154 155 156 157 158 159 160 161 162 163 164 165
void QGCParamWidget::loadSettings()
{
    QSettings settings;
    settings.beginGroup("QGC_MAVLINK_PROTOCOL");
    bool ok;
    int temp = settings.value("PARAMETER_RETRANSMISSION_TIMEOUT", retransmissionTimeout).toInt(&ok);
    if (ok) retransmissionTimeout = temp;
    temp = settings.value("PARAMETER_REWRITE_TIMEOUT", rewriteTimeout).toInt(&ok);
    if (ok) rewriteTimeout = temp;
    settings.endGroup();
}

lm's avatar
lm committed
166 167
void QGCParamWidget::loadParameterInfoCSV(const QString& autopilot, const QString& airframe)
{
LM's avatar
LM committed
168
    QDir appDir = QApplication::applicationDirPath();
169
    appDir.cd("files");
LM's avatar
LM committed
170 171
    QString fileName = QString("%1/%2/%3/parameter_tooltips/tooltips.txt").arg(appDir.canonicalPath()).arg(autopilot.toLower()).arg(airframe.toLower());
    QFile paramMetaFile(fileName);
lm's avatar
lm committed
172 173 174 175

    // Load CSV data
    if (!paramMetaFile.open(QIODevice::ReadOnly | QIODevice::Text))
    {
176
        //qDebug() << "COULD NOT OPEN PARAM META INFO FILE:" << fileName;
lm's avatar
lm committed
177 178 179 180 181 182 183 184 185 186
        return;
    }

    // Extract header

    // Read in values
    // Find all keys
    QTextStream in(&paramMetaFile);

    // First line is header
187 188
    // there might be more lines, but the first
    // line is assumed to be at least header
lm's avatar
lm committed
189 190
    QString header = in.readLine();

191 192 193 194 195 196
    // Ignore top-level comment lines
    while (header.startsWith('#') || header.startsWith('/') || header.startsWith('='))
    {
        header = in.readLine();
    }

lm's avatar
lm committed
197 198 199 200 201 202
    bool charRead = false;
    QString separator = "";
    QList<QChar> sepCandidates;
    sepCandidates << '\t';
    sepCandidates << ',';
    sepCandidates << ';';
203
    //sepCandidates << ' ';
lm's avatar
lm committed
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
    sepCandidates << '~';
    sepCandidates << '|';

    // Iterate until separator is found
    // or full header is parsed
    for (int i = 0; i < header.length(); i++)
    {
        if (sepCandidates.contains(header.at(i)))
        {
            // Separator found
            if (charRead)
            {
                separator += header[i];
            }
        }
        else
        {
            // Char found
            charRead = true;
            // If the separator is not empty, this char
            // has been read after a separator, so detection
            // is now complete
            if (separator != "") break;
        }
    }

230 231 232 233 234 235 236 237 238
    bool stripFirstSeparator = false;
    bool stripLastSeparator = false;

    // Figure out if the lines start with the separator (e.g. wiki syntax)
    if (header.startsWith(separator)) stripFirstSeparator = true;

    // Figure out if the lines end with the separator (e.g. wiki syntax)
    if (header.endsWith(separator)) stripLastSeparator = true;

lm's avatar
lm committed
239 240
    QString out = separator;
    out.replace("\t", "<tab>");
241
    //qDebug() << " Separator: \"" << out << "\"";
lm's avatar
lm committed
242 243 244 245 246 247 248 249
    //qDebug() << "READING CSV:" << header;


    // Read data
    while (!in.atEnd())
    {
        QString line = in.readLine();

250 251 252 253 254 255 256 257
        //qDebug() << "LINE PRE-STRIP" << line;

        // Strip separtors if necessary
        if (stripFirstSeparator) line.remove(0, separator.length());
        if (stripLastSeparator) line.remove(line.length()-separator.length(), line.length()-1);

        //qDebug() << "LINE POST-STRIP" << line;

lm's avatar
lm committed
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
        // Keep empty parts here - we still have to act on them
        QStringList parts = line.split(separator, QString::KeepEmptyParts);

        // Each line is:
        // variable name, Min, Max, Default, Multiplier, Enabled (0 = no, 1 = yes), Comment


        // Fill in min, max and default values
        if (parts.count() > 1)
        {
            // min
            paramMin.insert(parts.at(0), parts.at(1).toDouble());
        }
        if (parts.count() > 2)
        {
            // max
            paramMax.insert(parts.at(0), parts.at(2).toDouble());
        }
        if (parts.count() > 3)
        {
            // default
            paramDefault.insert(parts.at(0), parts.at(3).toDouble());
        }
        // IGNORING 4 and 5 for now
        if (parts.count() > 6)
        {
            // tooltip
            paramToolTips.insert(parts.at(0), parts.at(6).trimmed());
        }
    }
}

290 291 292 293
/**
 * @return The MAV of this widget. Unless the MAV object has been destroyed, this
 *         pointer is never zero.
 */
pixhawk's avatar
pixhawk committed
294 295 296 297 298 299 300 301 302 303 304
UASInterface* QGCParamWidget::getUAS()
{
    return mav;
}

/**
 *
 * @param uas System which has the component
 * @param component id of the component
 * @param componentName human friendly name of the component
 */
305
void QGCParamWidget::addComponent(int uas, int component, QString componentName)
pixhawk's avatar
pixhawk committed
306
{
307
    Q_UNUSED(uas);
308
    if (components->contains(component)) {
pixhawk's avatar
pixhawk committed
309
        // Update existing
310 311 312
        components->value(component)->setData(0, Qt::DisplayRole, QString("%1 (#%2)").arg(componentName).arg(component));
        //components->value(component)->setData(1, Qt::DisplayRole, QString::number(component));
        components->value(component)->setFirstColumnSpanned(true);
313
    } else {
pixhawk's avatar
pixhawk committed
314
        // Add new
lm's avatar
lm committed
315
        QStringList list(QString("%1 (#%2)").arg(componentName).arg(component));
pixhawk's avatar
pixhawk committed
316
        QTreeWidgetItem* comp = new QTreeWidgetItem(list);
lm's avatar
lm committed
317
        comp->setFirstColumnSpanned(true);
pixhawk's avatar
pixhawk committed
318 319 320
        components->insert(component, comp);
        // Create grouping and update maps
        paramGroups.insert(component, new QMap<QString, QTreeWidgetItem*>());
pixhawk's avatar
pixhawk committed
321 322
        tree->addTopLevelItem(comp);
        tree->update();
323
        // Create map in parameters
324
        if (!parameters.contains(component)) {
325
            parameters.insert(component, new QMap<QString, QVariant>());
326 327
        }
        // Create map in changed parameters
328
        if (!changedValues.contains(component)) {
329
            changedValues.insert(component, new QMap<QString, QVariant>());
330
        }
pixhawk's avatar
pixhawk committed
331 332 333
    }
}

lm's avatar
lm committed
334 335 336 337 338
/**
 * @param uas System which has the component
 * @param component id of the component
 * @param parameterName human friendly name of the parameter
 */
339
void QGCParamWidget::addParameter(int uas, int component, int paramCount, int paramId, QString parameterName, QVariant value)
lm's avatar
lm committed
340 341 342
{
    addParameter(uas, component, parameterName, value);

lm's avatar
lm committed
343
    // Missing packets list has to be instantiated for all components
344
    if (!transmissionMissingPackets.contains(component)) {
lm's avatar
lm committed
345 346 347
        transmissionMissingPackets.insert(component, new QList<int>());
    }

lm's avatar
lm committed
348
    // List mode is different from single parameter transfers
349
    if (transmissionListMode) {
lm's avatar
lm committed
350 351
        // Only accept the list size once on the first packet from
        // each component
lm's avatar
lm committed
352 353
        if (!transmissionListSizeKnown.contains(component))
        {
lm's avatar
lm committed
354 355
            // Mark list size as known
            transmissionListSizeKnown.insert(component, true);
lm's avatar
lm committed
356

357
            // Mark all parameters as missing
lm's avatar
lm committed
358 359 360 361
            for (int i = 0; i < paramCount; ++i)
            {
                if (!transmissionMissingPackets.value(component)->contains(i))
                {
lm's avatar
lm committed
362 363 364
                    transmissionMissingPackets.value(component)->append(i);
                }
            }
365

lm's avatar
lm committed
366 367 368
            // There is only one transmission timeout for all components
            // since components do not manage their transmission,
            // the longest timeout is safe for all components.
Lorenz Meier's avatar
Lorenz Meier committed
369
            quint64 thisTransmissionTimeout = QGC::groundTimeMilliseconds() + ((paramCount)*retransmissionTimeout);
lm's avatar
lm committed
370 371
            if (thisTransmissionTimeout > transmissionTimeout)
            {
lm's avatar
lm committed
372 373
                transmissionTimeout = thisTransmissionTimeout;
            }
lm's avatar
lm committed
374
        }
lm's avatar
lm committed
375 376 377 378

        // Start retransmission guard
        // or reset timer
        setRetransmissionGuardEnabled(true);
lm's avatar
lm committed
379 380
    }

lm's avatar
lm committed
381
    // Mark this parameter as received in read list
lm's avatar
lm committed
382 383 384 385
    int index = transmissionMissingPackets.value(component)->indexOf(paramId);
    // If the MAV sent the parameter without request, it wont be in missing list
    if (index != -1) transmissionMissingPackets.value(component)->removeAt(index);

lm's avatar
lm committed
386 387
    bool justWritten = false;
    bool writeMismatch = false;
388
    //bool lastWritten = false;
lm's avatar
lm committed
389
    // Mark this parameter as received in write ACK list
390
    QMap<QString, QVariant>* map = transmissionMissingWriteAckPackets.value(component);
lm's avatar
lm committed
391 392
    if (map && map->contains(parameterName))
    {
lm's avatar
lm committed
393
        justWritten = true;
lm's avatar
lm committed
394 395
        if (map->value(parameterName) != value)
        {
lm's avatar
lm committed
396 397 398 399 400
            writeMismatch = true;
        }
        map->remove(parameterName);
    }

401
    int missCount = 0;
lm's avatar
lm committed
402 403
    foreach (int key, transmissionMissingPackets.keys())
    {
404 405 406
        missCount +=  transmissionMissingPackets.value(key)->count();
    }

lm's avatar
lm committed
407
    int missWriteCount = 0;
lm's avatar
lm committed
408 409
    foreach (int key, transmissionMissingWriteAckPackets.keys())
    {
lm's avatar
lm committed
410 411 412
        missWriteCount += transmissionMissingWriteAckPackets.value(key)->count();
    }

lm's avatar
lm committed
413 414
    if (justWritten && !writeMismatch && missWriteCount == 0)
    {
lm's avatar
lm committed
415 416 417 418 419
        // Just wrote one and count went to 0 - this was the last missing write parameter
        statusLabel->setText(tr("SUCCESS: WROTE ALL PARAMETERS"));
        QPalette pal = statusLabel->palette();
        pal.setColor(backgroundRole(), QGC::colorGreen);
        statusLabel->setPalette(pal);
lm's avatar
lm committed
420 421
    } else if (justWritten && !writeMismatch)
    {
422
        statusLabel->setText(tr("SUCCESS: Wrote %2 (#%1/%4): %3").arg(paramId+1).arg(parameterName).arg(value.toDouble()).arg(paramCount));
lm's avatar
lm committed
423 424 425
        QPalette pal = statusLabel->palette();
        pal.setColor(backgroundRole(), QGC::colorGreen);
        statusLabel->setPalette(pal);
lm's avatar
lm committed
426 427
    } else if (justWritten && writeMismatch)
    {
lm's avatar
lm committed
428
        // Mismatch, tell user
lm's avatar
lm committed
429 430 431
        QPalette pal = statusLabel->palette();
        pal.setColor(backgroundRole(), QGC::colorRed);
        statusLabel->setPalette(pal);
432
        statusLabel->setText(tr("FAILURE: Wrote %1: sent %2 != onboard %3").arg(parameterName).arg(map->value(parameterName).toDouble()).arg(value.toDouble()));
lm's avatar
lm committed
433 434 435 436 437
    }
    else
    {
        if (missCount > 0)
        {
lm's avatar
lm committed
438 439 440
            QPalette pal = statusLabel->palette();
            pal.setColor(backgroundRole(), QGC::colorOrange);
            statusLabel->setPalette(pal);
lm's avatar
lm committed
441 442 443
        }
        else
        {
lm's avatar
lm committed
444 445 446 447
            QPalette pal = statusLabel->palette();
            pal.setColor(backgroundRole(), QGC::colorGreen);
            statusLabel->setPalette(pal);
        }
448 449
        QString val = QString("%1").arg(value.toFloat(), 5, 'f', 1, QChar(' '));
        //statusLabel->setText(tr("OK: %1 %2 #%3/%4, %5 miss").arg(parameterName).arg(val).arg(paramId+1).arg(paramCount).arg(missCount));
450 451 452 453 454 455 456 457 458 459 460 461
        if (missCount == 0)
        {
            // Transmission done
            QTime time = QTime::currentTime();
            QString timeString = time.toString();
            statusLabel->setText(tr("All received. (updated at %1)").arg(timeString));
        }
        else
        {
            // Transmission in progress
            statusLabel->setText(tr("OK: %1 %2 (%3/%4)").arg(parameterName).arg(val).arg(paramCount-missCount).arg(paramCount));
        }
lm's avatar
lm committed
462
    }
lm's avatar
lm committed
463 464

    // Check if last parameter was received
lm's avatar
lm committed
465 466
    if (missCount == 0 && missWriteCount == 0)
    {
lm's avatar
lm committed
467 468 469
        this->transmissionActive = false;
        this->transmissionListMode = false;
        transmissionListSizeKnown.clear();
lm's avatar
lm committed
470 471
        foreach (int key, transmissionMissingPackets.keys())
        {
lm's avatar
lm committed
472 473
            transmissionMissingPackets.value(key)->clear();
        }
474 475 476

        // Expand visual tree
        tree->expandItem(tree->topLevelItem(0));
lm's avatar
lm committed
477 478 479
    }
}

480 481 482 483 484
/**
 * @param uas System which has the component
 * @param component id of the component
 * @param parameterName human friendly name of the parameter
 */
485
void QGCParamWidget::addParameter(int uas, int component, QString parameterName, QVariant value)
pixhawk's avatar
pixhawk committed
486
{
487
    //qDebug() << "PARAM WIDGET GOT PARAM:" << value;
488
    Q_UNUSED(uas);
489
    // Reference to item in tree
490
    QTreeWidgetItem* parameterItem = NULL;
pixhawk's avatar
pixhawk committed
491 492

    // Get component
lm's avatar
lm committed
493 494
    if (!components->contains(component))
    {
Lorenz Meier's avatar
Lorenz Meier committed
495 496 497 498 499 500 501 502 503 504 505 506 507
        //        QString componentName;
        //        switch (component)
        //        {
        //        case MAV_COMP_ID_CAMERA:
        //            componentName = tr("Camera (#%1)").arg(component);
        //            break;
        //        case MAV_COMP_ID_IMU:
        //            componentName = tr("IMU (#%1)").arg(component);
        //            break;
        //        default:
        //            componentName = tr("Component #").arg(component);
        //            break;
        //        }
508
        QString componentName = tr("Component #%1").arg(component);
509
        addComponent(uas, component, componentName);
pixhawk's avatar
pixhawk committed
510
    }
511

512 513 514 515 516 517 518
    // Replace value in map

    // FIXME
    if (parameters.value(component)->contains(parameterName)) parameters.value(component)->remove(parameterName);
    parameters.value(component)->insert(parameterName, value);


pixhawk's avatar
pixhawk committed
519 520
    QString splitToken = "_";
    // Check if auto-grouping can work
lm's avatar
lm committed
521 522
    if (parameterName.contains(splitToken))
    {
pixhawk's avatar
pixhawk committed
523 524
        QString parent = parameterName.section(splitToken, 0, 0, QString::SectionSkipEmpty);
        QMap<QString, QTreeWidgetItem*>* compParamGroups = paramGroups.value(component);
525 526
        if (!compParamGroups->contains(parent))
        {
pixhawk's avatar
pixhawk committed
527 528 529 530 531 532
            // Insert group item
            QStringList glist;
            glist.append(parent);
            QTreeWidgetItem* item = new QTreeWidgetItem(glist);
            compParamGroups->insert(parent, item);
            components->value(component)->addChild(item);
533
        }
534 535 536 537

        // Append child to group
        bool found = false;
        QTreeWidgetItem* parentItem = compParamGroups->value(parent);
538
        for (int i = 0; i < parentItem->childCount(); i++) {
539 540
            QTreeWidgetItem* child = parentItem->child(i);
            QString key = child->data(0, Qt::DisplayRole).toString();
541 542
            if (key == parameterName)
            {
543 544 545 546 547 548 549
                //qDebug() << "UPDATED CHILD";
                parameterItem = child;
                parameterItem->setData(1, Qt::DisplayRole, value);
                found = true;
            }
        }

lm's avatar
lm committed
550 551
        if (!found)
        {
552 553 554
            // Insert parameter into map
            QStringList plist;
            plist.append(parameterName);
555
            // CREATE PARAMETER ITEM
556
            parameterItem = new QTreeWidgetItem(plist);
557
            // CONFIGURE PARAMETER ITEM
558
            parameterItem->setData(1, Qt::DisplayRole, value);
559 560

            compParamGroups->value(parent)->addChild(parameterItem);
lm's avatar
lm committed
561
            parameterItem->setFlags(parameterItem->flags() | Qt::ItemIsEditable);
562
        }
lm's avatar
lm committed
563 564 565
    }
    else
    {
pixhawk's avatar
pixhawk committed
566 567
        bool found = false;
        QTreeWidgetItem* parent = components->value(component);
lm's avatar
lm committed
568 569
        for (int i = 0; i < parent->childCount(); i++)
        {
pixhawk's avatar
pixhawk committed
570 571
            QTreeWidgetItem* child = parent->child(i);
            QString key = child->data(0, Qt::DisplayRole).toString();
lm's avatar
lm committed
572 573
            if (key == parameterName)
            {
pixhawk's avatar
pixhawk committed
574
                //qDebug() << "UPDATED CHILD";
575 576
                parameterItem = child;
                parameterItem->setData(1, Qt::DisplayRole, value);
pixhawk's avatar
pixhawk committed
577 578 579 580
                found = true;
            }
        }

lm's avatar
lm committed
581 582
        if (!found)
        {
583 584 585
            // Insert parameter into map
            QStringList plist;
            plist.append(parameterName);
586
            // CREATE PARAMETER ITEM
587
            parameterItem = new QTreeWidgetItem(plist);
588
            // CONFIGURE PARAMETER ITEM
589
            parameterItem->setData(1, Qt::DisplayRole, value);
590

lm's avatar
lm committed
591 592
            components->value(component)->addChild(parameterItem);
            parameterItem->setFlags(parameterItem->flags() | Qt::ItemIsEditable);
pixhawk's avatar
pixhawk committed
593
        }
594
        //tree->expandAll();
595
    }
596
    // Reset background color
597
    parameterItem->setBackground(0, Qt::NoBrush);
598
    parameterItem->setBackground(1, Qt::NoBrush);
lm's avatar
lm committed
599
    // Add tooltip
600 601 602 603
    QString tooltipFormat;
    if (paramDefault.contains(parameterName))
    {
        tooltipFormat = tr("Default: %1, %2");
LM's avatar
LM committed
604
        tooltipFormat = tooltipFormat.arg(paramDefault.value(parameterName, 0.0f)).arg(paramToolTips.value(parameterName, ""));
605 606 607 608 609 610 611
    }
    else
    {
        tooltipFormat = paramToolTips.value(parameterName, "");
    }
    parameterItem->setToolTip(0, tooltipFormat);
    parameterItem->setToolTip(1, tooltipFormat);
lm's avatar
lm committed
612

613
    //tree->update();
pixhawk's avatar
pixhawk committed
614
    if (changedValues.contains(component)) changedValues.value(component)->remove(parameterName);
pixhawk's avatar
pixhawk committed
615 616
}

617 618 619 620
/**
 * Send a request to deliver the list of onboard parameters
 * to the MAV.
 */
621 622
void QGCParamWidget::requestParameterList()
{
623
    if (!mav) return;
624 625 626 627 628 629 630
    // FIXME This call does not belong here
    // Once the comm handling is moved to a new
    // Param manager class the settings can be directly
    // loaded from MAVLink protocol
    loadSettings();
    // End of FIXME

lm's avatar
lm committed
631
    // Clear view and request param list
632
    clear();
633
    parameters.clear();
lm's avatar
lm committed
634
    received.clear();
lm's avatar
lm committed
635 636 637
    // Clear transmission state
    transmissionListMode = true;
    transmissionListSizeKnown.clear();
Lorenz Meier's avatar
Lorenz Meier committed
638 639
    foreach (int key, transmissionMissingPackets.keys())
    {
lm's avatar
lm committed
640 641 642
        transmissionMissingPackets.value(key)->clear();
    }
    transmissionActive = true;
lm's avatar
lm committed
643 644 645 646 647

    // Set status text
    statusLabel->setText(tr("Requested param list.. waiting"));

    mav->requestParameters();
648 649
}

650
void QGCParamWidget::parameterItemChanged(QTreeWidgetItem* current, int column)
lm's avatar
lm committed
651
{
652
    if (current && column > 0) {
653
        QTreeWidgetItem* parent = current->parent();
654
        while (parent->parent() != NULL) {
655 656 657 658
            parent = parent->parent();
        }
        // Parent is now top-level component
        int key = components->key(parent);
659
        if (!changedValues.contains(key)) {
660
            changedValues.insert(key, new QMap<QString, QVariant>());
661
        }
662
        QMap<QString, QVariant>* map = changedValues.value(key, NULL);
663
        if (map) {
664
            QString str = current->data(0, Qt::DisplayRole).toString();
665
            QVariant value = current->data(1, Qt::DisplayRole);
lm's avatar
lm committed
666
            // Set parameter on changed list to be transmitted to MAV
667 668 669 670
            QPalette pal = statusLabel->palette();
            pal.setColor(backgroundRole(), QGC::colorOrange);
            statusLabel->setPalette(pal);
            statusLabel->setText(tr("Transmit pend. %1:%2: %3").arg(key).arg(str).arg(value.toFloat(), 5, 'f', 1, QChar(' ')));
671 672 673 674 675 676 677 678 679 680
            //qDebug() << "PARAM CHANGED: COMP:" << key << "KEY:" << str << "VALUE:" << value;
            // Changed values list
            if (map->contains(str)) map->remove(str);
            map->insert(str, value);

            // Check if the value was numerically changed
            if (!parameters.value(key)->contains(str) || parameters.value(key)->value(str, value.toDouble()-1) != value) {
                current->setBackground(0, QBrush(QColor(QGC::colorOrange)));
                current->setBackground(1, QBrush(QColor(QGC::colorOrange)));
            }
681

682 683 684
            switch (parameters.value(key)->value(str).type())
            {
            case QVariant::Int:
Lorenz Meier's avatar
Lorenz Meier committed
685 686 687 688
            {
                QVariant fixedValue(value.toInt());
                parameters.value(key)->insert(str, fixedValue);
            }
689 690
                break;
            case QVariant::UInt:
Lorenz Meier's avatar
Lorenz Meier committed
691 692 693 694
            {
                QVariant fixedValue(value.toUInt());
                parameters.value(key)->insert(str, fixedValue);
            }
695 696
                break;
            case QMetaType::Float:
Lorenz Meier's avatar
Lorenz Meier committed
697 698 699 700
            {
                QVariant fixedValue(value.toFloat());
                parameters.value(key)->insert(str, fixedValue);
            }
701 702 703 704
                break;
            default:
                qCritical() << "ABORTED PARAM UPDATE, NO VALID QVARIANT TYPE";
                return;
705 706 707 708 709 710
            }
        }
    }
}

void QGCParamWidget::saveParameters()
711
{
712
    if (!mav) return;
713 714
    QString fileName = QFileDialog::getSaveFileName(this, tr("Save File"), "./parameters.txt", tr("Parameter File (*.txt)"));
    QFile file(fileName);
715
    if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) {
716 717 718 719 720 721 722 723 724 725
        return;
    }

    QTextStream in(&file);

    in << "# Onboard parameters for system " << mav->getUASName() << "\n";
    in << "#\n";
    in << "# MAV ID  COMPONENT ID  PARAM NAME  VALUE (FLOAT)\n";

    // Iterate through all components, through all parameters and emit them
726
    QMap<int, QMap<QString, QVariant>*>::iterator i;
727
    for (i = parameters.begin(); i != parameters.end(); ++i) {
728 729
        // Iterate through the parameters of the component
        int compid = i.key();
730
        QMap<QString, QVariant>* comp = i.value();
731
        {
732 733 734
            QMap<QString, QVariant>::iterator j;
            for (j = comp->begin(); j != comp->end(); ++j)
            {
735
                QString paramValue("%1");
736 737 738 739 740
                QString paramType("%1");
                switch (j.value().type())
                {
                case QVariant::Int:
                    paramValue = paramValue.arg(j.value().toInt());
741
                    paramType = paramType.arg(MAV_PARAM_TYPE_INT32);
742 743 744
                    break;
                case QVariant::UInt:
                    paramValue = paramValue.arg(j.value().toUInt());
745
                    paramType = paramType.arg(MAV_PARAM_TYPE_UINT32);
746 747 748
                    break;
                case QMetaType::Float:
                    paramValue = paramValue.arg(j.value().toDouble(), 25, 'g', 12);
749
                    paramType = paramType.arg(MAV_PARAM_TYPE_REAL32);
750 751 752 753 754 755
                    break;
                default:
                    qCritical() << "ABORTED PARAM WRITE TO FILE, NO VALID QVARIANT TYPE" << j.value();
                    return;
                }
                in << mav->getUASID() << "\t" << compid << "\t" << j.key() << "\t" << paramValue << "\t" << paramType << "\n";
756 757 758 759 760 761 762 763 764
                in.flush();
            }
        }
    }
    file.close();
}

void QGCParamWidget::loadParameters()
{
765
    if (!mav) return;
766 767 768 769 770
    QString fileName = QFileDialog::getOpenFileName(this, tr("Load File"), ".", tr("Parameter file (*.txt)"));
    QFile file(fileName);
    if (!file.open(QIODevice::ReadOnly | QIODevice::Text))
        return;

Lorenz Meier's avatar
Lorenz Meier committed
771
    bool userWarned = false;
772 773

    QTextStream in(&file);
774
    while (!in.atEnd()) {
775
        QString line = in.readLine();
776
        if (!line.startsWith("#")) {
777
            QStringList wpParams = line.split("\t");
778
            if (wpParams.size() == 5) {
779
                // Only load parameters for right mav
Lorenz Meier's avatar
Lorenz Meier committed
780 781 782 783
                if (!userWarned && (mav->getUASID() != wpParams.at(0).toInt())) {
                    MainWindow::instance()->showCriticalMessage(tr("Parameter loading warning"), tr("The parameters from the file %1 have been saved from system %2, but the currently selected system has the ID %3. If this is unintentional, please click on <READ> to revert to the parameters that are currently onboard").arg(fileName).arg(wpParams.at(0).toInt()).arg(mav->getUASID()));
                    userWarned = true;
                }
pixhawk's avatar
pixhawk committed
784

Lorenz Meier's avatar
Lorenz Meier committed
785 786 787 788 789 790 791 792
                bool changed = false;
                int component = wpParams.at(1).toInt();
                QString parameterName = wpParams.at(2);
                if (!parameters.contains(component) ||
                        fabs((static_cast<float>(parameters.value(component)->value(parameterName, wpParams.at(3).toDouble()).toDouble())) - (wpParams.at(3).toDouble())) > 2.0f * FLT_EPSILON) {
                    changed = true;
                    qDebug() << "Changed" << parameterName << "VAL" << wpParams.at(3).toDouble();
                }
lm's avatar
lm committed
793

Lorenz Meier's avatar
Lorenz Meier committed
794
                // Set parameter value
lm's avatar
lm committed
795

Lorenz Meier's avatar
Lorenz Meier committed
796 797 798 799
                // Create changed values data structure if necessary
                if (changed && !changedValues.contains(wpParams.at(1).toInt())) {
                    changedValues.insert(wpParams.at(1).toInt(), new QMap<QString, QVariant>());
                }
pixhawk's avatar
pixhawk committed
800

Lorenz Meier's avatar
Lorenz Meier committed
801 802 803 804
                // Add to changed values
                if (changed && changedValues.value(wpParams.at(1).toInt())->contains(wpParams.at(2))) {
                    changedValues.value(wpParams.at(1).toInt())->remove(wpParams.at(2));
                }
pixhawk's avatar
pixhawk committed
805

Lorenz Meier's avatar
Lorenz Meier committed
806 807 808 809 810 811 812 813
                switch (wpParams.at(4).toUInt())
                {
                case (int)MAV_PARAM_TYPE_REAL32:
                    addParameter(wpParams.at(0).toInt(), wpParams.at(1).toInt(), wpParams.at(2), wpParams.at(3).toFloat());
                    if (changed) {
                        changedValues.value(wpParams.at(1).toInt())->insert(wpParams.at(2), wpParams.at(3).toFloat());
                        setParameter(wpParams.at(1).toInt(), wpParams.at(2), wpParams.at(3).toFloat());
                        qDebug() << "FLOAT PARAM CHANGED";
814
                    }
Lorenz Meier's avatar
Lorenz Meier committed
815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831
                    break;
                case (int)MAV_PARAM_TYPE_UINT32:
                    addParameter(wpParams.at(0).toInt(), wpParams.at(1).toInt(), wpParams.at(2), wpParams.at(3).toUInt());
                    if (changed) {
                        changedValues.value(wpParams.at(1).toInt())->insert(wpParams.at(2), wpParams.at(3).toUInt());
                        setParameter(wpParams.at(1).toInt(), wpParams.at(2), QVariant(wpParams.at(3).toUInt()));
                    }
                    break;
                case (int)MAV_PARAM_TYPE_INT32:
                    addParameter(wpParams.at(0).toInt(), wpParams.at(1).toInt(), wpParams.at(2), wpParams.at(3).toInt());
                    if (changed) {
                        changedValues.value(wpParams.at(1).toInt())->insert(wpParams.at(2), wpParams.at(3).toInt());
                        setParameter(wpParams.at(1).toInt(), wpParams.at(2), QVariant(wpParams.at(3).toInt()));
                    }
                    break;
                default:
                    qDebug() << "FAILED LOADING PARAM" << wpParams.at(2) << "NO KNOWN DATA TYPE";
832
                }
Lorenz Meier's avatar
Lorenz Meier committed
833 834 835 836 837 838

                //qDebug() << "MARKING COMP" << wpParams.at(1).toInt() << "PARAM" << wpParams.at(2) << "VALUE" << (float)wpParams.at(3).toDouble() << "AS CHANGED";

                // Mark in UI


lm's avatar
lm committed
839 840
            }
        }
841
    }
842 843
    file.close();

lm's avatar
lm committed
844 845
}

846 847 848 849 850 851 852 853 854
/**
 * Enabling the retransmission guard enables the parameter widget to track
 * dropped parameters and to re-request them. This works for both individual
 * parameter reads as well for whole list requests.
 *
 * @param enabled True if retransmission checking should be enabled, false else
 */
void QGCParamWidget::setRetransmissionGuardEnabled(bool enabled)
{
855
    if (enabled) {
856
        retransmissionTimer.start(retransmissionTimeout);
857
    } else {
858 859 860 861 862 863
        retransmissionTimer.stop();
    }
}

void QGCParamWidget::retransmissionGuardTick()
{
864
    if (transmissionActive) {
865
        //qDebug() << __FILE__ << __LINE__ << "RETRANSMISSION GUARD ACTIVE, CHECKING FOR DROPS..";
866

lm's avatar
lm committed
867 868
        // Check for timeout
        // stop retransmission attempts on timeout
869
        if (QGC::groundTimeMilliseconds() > transmissionTimeout) {
lm's avatar
lm committed
870 871 872 873 874 875 876
            setRetransmissionGuardEnabled(false);
            transmissionActive = false;

            // Empty read retransmission list
            // Empty write retransmission list
            int missingReadCount = 0;
            QList<int> readKeys = transmissionMissingPackets.keys();
877
            foreach (int component, readKeys) {
lm's avatar
lm committed
878 879 880 881 882 883 884
                missingReadCount += transmissionMissingPackets.value(component)->count();
                transmissionMissingPackets.value(component)->clear();
            }

            // Empty write retransmission list
            int missingWriteCount = 0;
            QList<int> writeKeys = transmissionMissingWriteAckPackets.keys();
885
            foreach (int component, writeKeys) {
lm's avatar
lm committed
886 887 888 889 890 891 892 893
                missingWriteCount += transmissionMissingWriteAckPackets.value(component)->count();
                transmissionMissingWriteAckPackets.value(component)->clear();
            }
            statusLabel->setText(tr("TIMEOUT! MISSING: %1 read, %2 write.").arg(missingReadCount).arg(missingWriteCount));
        }

        // Re-request at maximum retransmissionBurstRequestSize parameters at once
        // to prevent link flooding
894
        QMap<int, QMap<QString, QVariant>*>::iterator i;
895
        for (i = parameters.begin(); i != parameters.end(); ++i) {
896 897
            // Iterate through the parameters of the component
            int component = i.key();
lm's avatar
lm committed
898
            // Request n parameters from this component (at maximum)
899
            QList<int> * paramList = transmissionMissingPackets.value(component, NULL);
900
            if (paramList) {
901
                int count = 0;
902 903
                foreach (int id, *paramList) {
                    if (count < retransmissionBurstRequestSize) {
904
                        //qDebug() << __FILE__ << __LINE__ << "RETRANSMISSION GUARD REQUESTS RETRANSMISSION OF PARAM #" << id << "FROM COMPONENT #" << component;
905
                        emit requestParameter(component, id);
lm's avatar
lm committed
906
                        statusLabel->setText(tr("Requested retransmission of #%1").arg(id+1));
907
                        count++;
908
                    } else {
909 910 911 912 913
                        break;
                    }
                }
            }
        }
lm's avatar
lm committed
914 915 916 917 918

        // Re-request at maximum retransmissionBurstRequestSize parameters at once
        // to prevent write-request link flooding
        // Empty write retransmission list
        QList<int> writeKeys = transmissionMissingWriteAckPackets.keys();
919
        foreach (int component, writeKeys) {
lm's avatar
lm committed
920
            int count = 0;
921
            QMap <QString, QVariant>* missingParams = transmissionMissingWriteAckPackets.value(component);
922 923
            foreach (QString key, missingParams->keys()) {
                if (count < retransmissionBurstRequestSize) {
lm's avatar
lm committed
924
                    // Re-request write operation
925 926 927 928
                    QVariant value = missingParams->value(key);
                    switch (parameters.value(component)->value(key).type())
                    {
                    case QVariant::Int:
Lorenz Meier's avatar
Lorenz Meier committed
929 930 931 932
                    {
                        QVariant fixedValue(value.toInt());
                        emit parameterChanged(component, key, fixedValue);
                    }
933 934
                        break;
                    case QVariant::UInt:
Lorenz Meier's avatar
Lorenz Meier committed
935 936 937 938
                    {
                        QVariant fixedValue(value.toUInt());
                        emit parameterChanged(component, key, fixedValue);
                    }
939 940
                        break;
                    case QMetaType::Float:
Lorenz Meier's avatar
Lorenz Meier committed
941 942 943 944
                    {
                        QVariant fixedValue(value.toFloat());
                        emit parameterChanged(component, key, fixedValue);
                    }
945 946
                        break;
                    default:
947
                        //qCritical() << "ABORTED PARAM RETRANSMISSION, NO VALID QVARIANT TYPE";
948 949
                        return;
                    }
950
                    statusLabel->setText(tr("Requested rewrite of: %1: %2").arg(key).arg(missingParams->value(key).toDouble()));
lm's avatar
lm committed
951
                    count++;
952
                } else {
lm's avatar
lm committed
953 954 955 956
                    break;
                }
            }
        }
957
    } else {
958
        //qDebug() << __FILE__ << __LINE__ << "STOPPING RETRANSMISSION GUARD GRACEFULLY";
959 960 961 962
        setRetransmissionGuardEnabled(false);
    }
}

963

964 965 966 967 968
/**
 * The .. signal is emitted
 */
void QGCParamWidget::requestParameterUpdate(int component, const QString& parameter)
{
969
    if (mav) mav->requestParameter(component, parameter);
970 971 972
}


973 974 975 976 977
/**
 * @param component the subsystem which has the parameter
 * @param parameterName name of the parameter, as delivered by the system
 * @param value value of the parameter
 */
978
void QGCParamWidget::setParameter(int component, QString parameterName, QVariant value)
979
{
980 981 982 983 984 985 986 987 988 989
    if (paramMin.contains(parameterName) && value.toDouble() < paramMin.value(parameterName))
    {
        statusLabel->setText(tr("REJ. %1 < min").arg(value.toDouble()));
        return;
    }
    if (paramMax.contains(parameterName) && value.toDouble() > paramMax.value(parameterName))
    {
        statusLabel->setText(tr("REJ. %1 > max").arg(value.toDouble()));
        return;
    }
990 991 992 993

    switch (parameters.value(component)->value(parameterName).type())
    {
    case QVariant::Int:
Lorenz Meier's avatar
Lorenz Meier committed
994 995 996 997 998
    {
        QVariant fixedValue(value.toInt());
        emit parameterChanged(component, parameterName, fixedValue);
        //qDebug() << "PARAM WIDGET SENT:" << fixedValue;
    }
999 1000
        break;
    case QVariant::UInt:
Lorenz Meier's avatar
Lorenz Meier committed
1001 1002 1003 1004 1005
    {
        QVariant fixedValue(value.toUInt());
        emit parameterChanged(component, parameterName, fixedValue);
        //qDebug() << "PARAM WIDGET SENT:" << fixedValue;
    }
1006 1007
        break;
    case QMetaType::Float:
Lorenz Meier's avatar
Lorenz Meier committed
1008 1009 1010 1011 1012
    {
        QVariant fixedValue(value.toFloat());
        emit parameterChanged(component, parameterName, fixedValue);
        //qDebug() << "PARAM WIDGET SENT:" << fixedValue;
    }
1013 1014 1015 1016 1017 1018
        break;
    default:
        qCritical() << "ABORTED PARAM SEND, NO VALID QVARIANT TYPE";
        return;
    }

lm's avatar
lm committed
1019 1020
    // Wait for parameter to be written back
    // mark it therefore as missing
1021 1022 1023
    if (!transmissionMissingWriteAckPackets.contains(component))
    {
        transmissionMissingWriteAckPackets.insert(component, new QMap<QString, QVariant>());
lm's avatar
lm committed
1024 1025 1026 1027 1028 1029
    }

    // Insert it in missing write ACK list
    transmissionMissingWriteAckPackets.value(component)->insert(parameterName, value);

    // Set timeouts
Lorenz Meier's avatar
Lorenz Meier committed
1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041
    if (transmissionActive)
    {
        transmissionTimeout += rewriteTimeout;
    }
    else
    {
        quint64 newTransmissionTimeout = QGC::groundTimeMilliseconds() + rewriteTimeout;
        if (newTransmissionTimeout > transmissionTimeout)
        {
            transmissionTimeout = newTransmissionTimeout;
        }
        transmissionActive = true;
lm's avatar
lm committed
1042
    }
Lorenz Meier's avatar
Lorenz Meier committed
1043

lm's avatar
lm committed
1044 1045
    // Enable guard / reset timeouts
    setRetransmissionGuardEnabled(true);
1046 1047
}

1048 1049 1050
/**
 * Set all parameter in the parameter tree on the MAV
 */
1051 1052
void QGCParamWidget::setParameters()
{
1053
    // Iterate through all components, through all parameters and emit them
1054
    int parametersSent = 0;
1055
    QMap<int, QMap<QString, QVariant>*>::iterator i;
1056
    for (i = changedValues.begin(); i != changedValues.end(); ++i) {
1057 1058
        // Iterate through the parameters of the component
        int compid = i.key();
1059
        QMap<QString, QVariant>* comp = i.value();
1060
        {
1061
            QMap<QString, QVariant>::iterator j;
1062
            for (j = comp->begin(); j != comp->end(); ++j) {
1063
                setParameter(compid, j.key(), j.value());
1064
                parametersSent++;
1065 1066 1067 1068
            }
        }
    }

lm's avatar
lm committed
1069
    // Change transmission status if necessary
1070
    if (parametersSent == 0) {
1071
        statusLabel->setText(tr("No transmission: No changed values."));
1072
    } else {
1073
        statusLabel->setText(tr("Transmitting %1 parameters.").arg(parametersSent));
lm's avatar
lm committed
1074
        // Set timeouts
Lorenz Meier's avatar
Lorenz Meier committed
1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085
        if (transmissionActive)
        {
            transmissionTimeout += parametersSent*rewriteTimeout;
        }
        else
        {
            transmissionActive = true;
            quint64 newTransmissionTimeout = QGC::groundTimeMilliseconds() + parametersSent*rewriteTimeout;
            if (newTransmissionTimeout > transmissionTimeout) {
                transmissionTimeout = newTransmissionTimeout;
            }
lm's avatar
lm committed
1086 1087 1088
        }
        // Enable guard
        setRetransmissionGuardEnabled(true);
1089
    }
1090 1091
}

1092 1093 1094 1095
/**
 * Write the current onboard parameters from RAM into
 * permanent storage, e.g. EEPROM or harddisk
 */
1096 1097
void QGCParamWidget::writeParameters()
{
1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124
    int changedParamCount = 0;

    QMap<int, QMap<QString, QVariant>*>::iterator i;
    for (i = changedValues.begin(); i != changedValues.end(); ++i)
    {
        // Iterate through the parameters of the component
        QMap<QString, QVariant>* comp = i.value();
        {
            QMap<QString, QVariant>::iterator j;
            for (j = comp->begin(); j != comp->end(); ++j)
            {
                changedParamCount++;
            }
        }
    }

    if (changedParamCount > 0)
    {
        QMessageBox msgBox;
        msgBox.setText(tr("There are locally changed parameters. Please transmit them first (<TRANSMIT>) or update them with the onboard values (<REFRESH>) before storing onboard from RAM to ROM."));
        msgBox.exec();
    }
    else
    {
        if (!mav) return;
        mav->writeParametersToStorage();
    }
1125 1126 1127 1128
}

void QGCParamWidget::readParameters()
{
1129
    if (!mav) return;
1130
    mav->readParametersFromStorage();
1131 1132
}

1133 1134 1135
/**
 * Clear all data in the parameter widget
 */
pixhawk's avatar
pixhawk committed
1136 1137 1138
void QGCParamWidget::clear()
{
    tree->clear();
lm's avatar
lm committed
1139
    components->clear();
pixhawk's avatar
pixhawk committed
1140
}