QGCParamWidget.cc 43.6 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
    // Load default values and tooltips
58 59 60
    QString hey(uas->getAutopilotTypeName());
    QString hey2(uas->getSystemTypeName());
    loadParameterInfoCSV(hey, hey2);
lm's avatar
lm committed
61

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

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

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

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


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

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

99
    QPushButton* writeButton = new QPushButton(tr("Write (ROM)"));
100 101
    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."));
102
    connect(writeButton, SIGNAL(clicked()), this, SLOT(writeParameters()));
lm's avatar
lm committed
103
    horizontalLayout->addWidget(writeButton, 2, 2);
104

105
    QPushButton* loadFileButton = new QPushButton(tr("Load File"));
106 107
    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."));
108
    connect(loadFileButton, SIGNAL(clicked()), this, SLOT(loadParametersFromFile()));
lm's avatar
lm committed
109
    horizontalLayout->addWidget(loadFileButton, 3, 0);
110 111

    QPushButton* saveFileButton = new QPushButton(tr("Save File"));
112 113
    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."));
114
    connect(saveFileButton, SIGNAL(clicked()), this, SLOT(saveParametersToFile()));
lm's avatar
lm committed
115 116 117 118 119 120 121
    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);
122

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

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

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

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

144
    // New parameters from UAS
145
    connect(uas, SIGNAL(parameterChanged(int,int,int,int,QString,QVariant)), this, SLOT(receivedParameterUpdate(int,int,int,int,QString,QVariant)));
146 147

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

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

156 157 158 159 160 161 162 163 164 165 166 167
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
168 169
void QGCParamWidget::loadParameterInfoCSV(const QString& autopilot, const QString& airframe)
{
170 171 172 173
    Q_UNUSED(airframe);

    qDebug() << "ATTEMPTING TO LOAD CSV";

LM's avatar
LM committed
174
    QDir appDir = QApplication::applicationDirPath();
175
    appDir.cd("files");
176
    QString fileName = QString("%1/%2/parameter_tooltips/tooltips.txt").arg(appDir.canonicalPath()).arg(autopilot.toLower());
LM's avatar
LM committed
177
    QFile paramMetaFile(fileName);
lm's avatar
lm committed
178

179 180 181
    qDebug() << "AUTOPILOT:" << autopilot;
    qDebug() << "FILENAME: " << fileName;

lm's avatar
lm committed
182 183 184
    // Load CSV data
    if (!paramMetaFile.open(QIODevice::ReadOnly | QIODevice::Text))
    {
185
        //qDebug() << "COULD NOT OPEN PARAM META INFO FILE:" << fileName;
lm's avatar
lm committed
186 187 188 189 190 191 192 193 194 195
        return;
    }

    // Extract header

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

    // First line is header
196 197
    // there might be more lines, but the first
    // line is assumed to be at least header
lm's avatar
lm committed
198 199
    QString header = in.readLine();

200
    // Ignore top-level comment lines
201 202
    while (header.startsWith('#') || header.startsWith('/')
           || header.startsWith('=') || header.startsWith('^'))
203 204 205 206
    {
        header = in.readLine();
    }

lm's avatar
lm committed
207 208 209 210 211 212
    bool charRead = false;
    QString separator = "";
    QList<QChar> sepCandidates;
    sepCandidates << '\t';
    sepCandidates << ',';
    sepCandidates << ';';
213
    //sepCandidates << ' ';
lm's avatar
lm committed
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
    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;
        }
    }

240 241 242 243 244 245 246 247 248
    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
249 250
    QString out = separator;
    out.replace("\t", "<tab>");
251
    //qDebug() << " Separator: \"" << out << "\"";
lm's avatar
lm committed
252 253 254 255 256 257 258 259
    //qDebug() << "READING CSV:" << header;


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

260 261 262 263 264 265 266 267
        //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
268 269 270 271 272 273 274 275 276 277 278
        // 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
279
            paramMin.insert(parts.at(0).trimmed(), parts.at(1).toDouble());
lm's avatar
lm committed
280 281 282 283
        }
        if (parts.count() > 2)
        {
            // max
284
            paramMax.insert(parts.at(0).trimmed(), parts.at(2).toDouble());
lm's avatar
lm committed
285 286 287 288
        }
        if (parts.count() > 3)
        {
            // default
289
            paramDefault.insert(parts.at(0).trimmed(), parts.at(3).toDouble());
lm's avatar
lm committed
290 291 292 293 294
        }
        // IGNORING 4 and 5 for now
        if (parts.count() > 6)
        {
            // tooltip
295 296
            paramToolTips.insert(parts.at(0).trimmed(), parts.at(6).trimmed());
            qDebug() << "PARAM META:" << parts.at(0).trimmed();
lm's avatar
lm committed
297 298 299 300
        }
    }
}

301 302 303 304
/**
 * @return The MAV of this widget. Unless the MAV object has been destroyed, this
 *         pointer is never zero.
 */
pixhawk's avatar
pixhawk committed
305 306 307 308 309 310 311 312 313 314 315
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
 */
316
void QGCParamWidget::addComponent(int uas, int component, QString componentName)
pixhawk's avatar
pixhawk committed
317
{
318
    Q_UNUSED(uas);
319
    if (components->contains(component)) {
pixhawk's avatar
pixhawk committed
320
        // Update existing
321 322 323
        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);
324
    } else {
pixhawk's avatar
pixhawk committed
325
        // Add new
lm's avatar
lm committed
326
        QStringList list(QString("%1 (#%2)").arg(componentName).arg(component));
pixhawk's avatar
pixhawk committed
327
        QTreeWidgetItem* comp = new QTreeWidgetItem(list);
lm's avatar
lm committed
328
        comp->setFirstColumnSpanned(true);
pixhawk's avatar
pixhawk committed
329 330 331
        components->insert(component, comp);
        // Create grouping and update maps
        paramGroups.insert(component, new QMap<QString, QTreeWidgetItem*>());
pixhawk's avatar
pixhawk committed
332 333
        tree->addTopLevelItem(comp);
        tree->update();
334
        // Create map in parameters
tstellanova's avatar
tstellanova committed
335 336
        if (!onboardParameters.contains(component)) {
            onboardParameters.insert(component, new QMap<QString, QVariant>());
337
        }
338 339 340 341
//        // Create map in changed parameters
//        if (!changedValues.contains(component)) {
//            changedValues.insert(component, new QMap<QString, QVariant>());
//        }
pixhawk's avatar
pixhawk committed
342 343 344
    }
}

lm's avatar
lm committed
345 346 347 348 349
/**
 * @param uas System which has the component
 * @param component id of the component
 * @param parameterName human friendly name of the parameter
 */
350
void QGCParamWidget::receivedParameterUpdate(int uas, int component, int paramCount, int paramId, QString parameterName, QVariant value)
lm's avatar
lm committed
351
{
352
    receivedParameterUpdate(uas, component, parameterName, value);
lm's avatar
lm committed
353

lm's avatar
lm committed
354
    // Missing packets list has to be instantiated for all components
355
    if (!transmissionMissingPackets.contains(component)) {
lm's avatar
lm committed
356 357 358
        transmissionMissingPackets.insert(component, new QList<int>());
    }

lm's avatar
lm committed
359
    // List mode is different from single parameter transfers
360
    if (transmissionListMode) {
lm's avatar
lm committed
361 362
        // Only accept the list size once on the first packet from
        // each component
lm's avatar
lm committed
363 364
        if (!transmissionListSizeKnown.contains(component))
        {
lm's avatar
lm committed
365 366
            // Mark list size as known
            transmissionListSizeKnown.insert(component, true);
lm's avatar
lm committed
367

368
            // Mark all parameters as missing
lm's avatar
lm committed
369 370 371 372
            for (int i = 0; i < paramCount; ++i)
            {
                if (!transmissionMissingPackets.value(component)->contains(i))
                {
lm's avatar
lm committed
373 374 375
                    transmissionMissingPackets.value(component)->append(i);
                }
            }
376

lm's avatar
lm committed
377 378 379
            // 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
380
            quint64 thisTransmissionTimeout = QGC::groundTimeMilliseconds() + ((paramCount)*retransmissionTimeout);
lm's avatar
lm committed
381 382
            if (thisTransmissionTimeout > transmissionTimeout)
            {
lm's avatar
lm committed
383 384
                transmissionTimeout = thisTransmissionTimeout;
            }
lm's avatar
lm committed
385
        }
lm's avatar
lm committed
386 387 388 389

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

lm's avatar
lm committed
392
    // Mark this parameter as received in read list
lm's avatar
lm committed
393 394 395 396
    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
397 398
    bool justWritten = false;
    bool writeMismatch = false;
399
    //bool lastWritten = false;
lm's avatar
lm committed
400
    // Mark this parameter as received in write ACK list
401
    QMap<QString, QVariant>* map = transmissionMissingWriteAckPackets.value(component);
lm's avatar
lm committed
402 403
    if (map && map->contains(parameterName))
    {
lm's avatar
lm committed
404
        justWritten = true;
405
        QVariant newval = map->value(parameterName);
lm's avatar
lm committed
406 407
        if (map->value(parameterName) != value)
        {
lm's avatar
lm committed
408 409 410 411 412
            writeMismatch = true;
        }
        map->remove(parameterName);
    }

413
    int missCount = 0;
lm's avatar
lm committed
414 415
    foreach (int key, transmissionMissingPackets.keys())
    {
416 417 418
        missCount +=  transmissionMissingPackets.value(key)->count();
    }

lm's avatar
lm committed
419
    int missWriteCount = 0;
lm's avatar
lm committed
420 421
    foreach (int key, transmissionMissingWriteAckPackets.keys())
    {
lm's avatar
lm committed
422 423 424
        missWriteCount += transmissionMissingWriteAckPackets.value(key)->count();
    }

lm's avatar
lm committed
425 426
    if (justWritten && !writeMismatch && missWriteCount == 0)
    {
lm's avatar
lm committed
427 428 429 430 431
        // 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
432 433
    } else if (justWritten && !writeMismatch)
    {
434
        statusLabel->setText(tr("SUCCESS: Wrote %2 (#%1/%4): %3").arg(paramId+1).arg(parameterName).arg(value.toDouble()).arg(paramCount));
lm's avatar
lm committed
435 436 437
        QPalette pal = statusLabel->palette();
        pal.setColor(backgroundRole(), QGC::colorGreen);
        statusLabel->setPalette(pal);
lm's avatar
lm committed
438 439
    } else if (justWritten && writeMismatch)
    {
lm's avatar
lm committed
440
        // Mismatch, tell user
lm's avatar
lm committed
441 442 443
        QPalette pal = statusLabel->palette();
        pal.setColor(backgroundRole(), QGC::colorRed);
        statusLabel->setPalette(pal);
444
        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
445 446 447 448 449
    }
    else
    {
        if (missCount > 0)
        {
lm's avatar
lm committed
450 451 452
            QPalette pal = statusLabel->palette();
            pal.setColor(backgroundRole(), QGC::colorOrange);
            statusLabel->setPalette(pal);
lm's avatar
lm committed
453 454 455
        }
        else
        {
lm's avatar
lm committed
456 457 458 459
            QPalette pal = statusLabel->palette();
            pal.setColor(backgroundRole(), QGC::colorGreen);
            statusLabel->setPalette(pal);
        }
460 461
        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));
462 463 464 465 466 467 468 469 470 471 472 473
        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
474
    }
lm's avatar
lm committed
475 476

    // Check if last parameter was received
lm's avatar
lm committed
477 478
    if (missCount == 0 && missWriteCount == 0)
    {
lm's avatar
lm committed
479 480 481
        this->transmissionActive = false;
        this->transmissionListMode = false;
        transmissionListSizeKnown.clear();
lm's avatar
lm committed
482 483
        foreach (int key, transmissionMissingPackets.keys())
        {
lm's avatar
lm committed
484 485
            transmissionMissingPackets.value(key)->clear();
        }
486 487 488

        // Expand visual tree
        tree->expandItem(tree->topLevelItem(0));
lm's avatar
lm committed
489 490 491
    }
}

492 493 494 495 496
/**
 * @param uas System which has the component
 * @param component id of the component
 * @param parameterName human friendly name of the parameter
 */
497
void QGCParamWidget::receivedParameterUpdate(int uas, int component, QString parameterName, QVariant value)
pixhawk's avatar
pixhawk committed
498
{
499
    //qDebug() << "PARAM WIDGET GOT PARAM:" << value;
500
    Q_UNUSED(uas);
501
    // Reference to item in tree
502
    QTreeWidgetItem* parameterItem = NULL;
pixhawk's avatar
pixhawk committed
503 504

    // Get component
lm's avatar
lm committed
505 506
    if (!components->contains(component))
    {
Lorenz Meier's avatar
Lorenz Meier committed
507 508 509 510 511 512 513 514 515 516 517 518 519
        //        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;
        //        }
520
        QString componentName = tr("Component #%1").arg(component);
521
        addComponent(uas, component, componentName);
pixhawk's avatar
pixhawk committed
522
    }
523

524 525 526
    // Replace value in map

    // FIXME
tstellanova's avatar
tstellanova committed
527 528
    if (onboardParameters.value(component)->contains(parameterName)) onboardParameters.value(component)->remove(parameterName);
    onboardParameters.value(component)->insert(parameterName, value);
529 530


pixhawk's avatar
pixhawk committed
531 532
    QString splitToken = "_";
    // Check if auto-grouping can work
lm's avatar
lm committed
533 534
    if (parameterName.contains(splitToken))
    {
pixhawk's avatar
pixhawk committed
535 536
        QString parent = parameterName.section(splitToken, 0, 0, QString::SectionSkipEmpty);
        QMap<QString, QTreeWidgetItem*>* compParamGroups = paramGroups.value(component);
537 538
        if (!compParamGroups->contains(parent))
        {
pixhawk's avatar
pixhawk committed
539 540 541 542 543 544
            // Insert group item
            QStringList glist;
            glist.append(parent);
            QTreeWidgetItem* item = new QTreeWidgetItem(glist);
            compParamGroups->insert(parent, item);
            components->value(component)->addChild(item);
545
        }
546 547 548 549

        // Append child to group
        bool found = false;
        QTreeWidgetItem* parentItem = compParamGroups->value(parent);
550
        for (int i = 0; i < parentItem->childCount(); i++) {
551 552
            QTreeWidgetItem* child = parentItem->child(i);
            QString key = child->data(0, Qt::DisplayRole).toString();
553 554
            if (key == parameterName)
            {
555 556
                //qDebug() << "UPDATED CHILD";
                parameterItem = child;
557 558 559 560 561 562 563 564
                if (value.type() == QVariant::Char)
                {
                    parameterItem->setData(1, Qt::DisplayRole, value.toUInt());
                }
                else
                {
                    parameterItem->setData(1, Qt::DisplayRole, value);
                }
565 566 567 568
                found = true;
            }
        }

lm's avatar
lm committed
569 570
        if (!found)
        {
571 572 573
            // Insert parameter into map
            QStringList plist;
            plist.append(parameterName);
574
            // CREATE PARAMETER ITEM
575
            parameterItem = new QTreeWidgetItem(plist);
576
            // CONFIGURE PARAMETER ITEM
577 578 579 580 581 582 583 584
            if (value.type() == QVariant::Char)
            {
                parameterItem->setData(1, Qt::DisplayRole, value.toUInt());
            }
            else
            {
                parameterItem->setData(1, Qt::DisplayRole, value);
            }
585 586

            compParamGroups->value(parent)->addChild(parameterItem);
lm's avatar
lm committed
587
            parameterItem->setFlags(parameterItem->flags() | Qt::ItemIsEditable);
588
        }
lm's avatar
lm committed
589 590 591
    }
    else
    {
pixhawk's avatar
pixhawk committed
592 593
        bool found = false;
        QTreeWidgetItem* parent = components->value(component);
lm's avatar
lm committed
594 595
        for (int i = 0; i < parent->childCount(); i++)
        {
pixhawk's avatar
pixhawk committed
596 597
            QTreeWidgetItem* child = parent->child(i);
            QString key = child->data(0, Qt::DisplayRole).toString();
lm's avatar
lm committed
598 599
            if (key == parameterName)
            {
pixhawk's avatar
pixhawk committed
600
                //qDebug() << "UPDATED CHILD";
601 602
                parameterItem = child;
                parameterItem->setData(1, Qt::DisplayRole, value);
pixhawk's avatar
pixhawk committed
603 604 605 606
                found = true;
            }
        }

lm's avatar
lm committed
607 608
        if (!found)
        {
609 610 611
            // Insert parameter into map
            QStringList plist;
            plist.append(parameterName);
612
            // CREATE PARAMETER ITEM
613
            parameterItem = new QTreeWidgetItem(plist);
614
            // CONFIGURE PARAMETER ITEM
615
            parameterItem->setData(1, Qt::DisplayRole, value);
616

lm's avatar
lm committed
617 618
            components->value(component)->addChild(parameterItem);
            parameterItem->setFlags(parameterItem->flags() | Qt::ItemIsEditable);
pixhawk's avatar
pixhawk committed
619
        }
620
        //tree->expandAll();
621
    }
622
    // Reset background color
623
    parameterItem->setBackground(0, Qt::NoBrush);
624
    parameterItem->setBackground(1, Qt::NoBrush);
lm's avatar
lm committed
625
    // Add tooltip
626 627 628 629
    QString tooltipFormat;
    if (paramDefault.contains(parameterName))
    {
        tooltipFormat = tr("Default: %1, %2");
LM's avatar
LM committed
630
        tooltipFormat = tooltipFormat.arg(paramDefault.value(parameterName, 0.0f)).arg(paramToolTips.value(parameterName, ""));
631 632 633 634 635 636 637
    }
    else
    {
        tooltipFormat = paramToolTips.value(parameterName, "");
    }
    parameterItem->setToolTip(0, tooltipFormat);
    parameterItem->setToolTip(1, tooltipFormat);
lm's avatar
lm committed
638

639 640
    paramDataModel->handleParameterUpdate(component,parameterName,value);

pixhawk's avatar
pixhawk committed
641 642
}

643 644 645 646
/**
 * Send a request to deliver the list of onboard parameters
 * to the MAV.
 */
647 648
void QGCParamWidget::requestParameterList()
{
649
    if (!mav) return;
650 651 652 653 654 655 656
    // 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
657
    // Clear view and request param list
658
    clear();
tstellanova's avatar
tstellanova committed
659
    onboardParameters.clear();
lm's avatar
lm committed
660
    received.clear();
lm's avatar
lm committed
661 662 663
    // Clear transmission state
    transmissionListMode = true;
    transmissionListSizeKnown.clear();
Lorenz Meier's avatar
Lorenz Meier committed
664 665
    foreach (int key, transmissionMissingPackets.keys())
    {
lm's avatar
lm committed
666 667 668
        transmissionMissingPackets.value(key)->clear();
    }
    transmissionActive = true;
lm's avatar
lm committed
669 670 671 672 673

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

    mav->requestParameters();
674 675
}

676
void QGCParamWidget::parameterItemChanged(QTreeWidgetItem* current, int column)
lm's avatar
lm committed
677
{
678
    if (current && column > 0) {
679
        QTreeWidgetItem* parent = current->parent();
680
        while (parent->parent() != NULL) {
681 682 683 684
            parent = parent->parent();
        }
        // Parent is now top-level component
        int key = components->key(parent);
685 686 687

        //ensure we have a placeholder map for this component
        QMap<int, QMap<QString , QVariant> *> changedValues = this->paramDataModel->getPendingParameters();
688
        if (!changedValues.contains(key)) {
689
            changedValues.insert(key, new QMap<QString, QVariant>());
690
        }
691 692

        //insert the changed value into the map
693
        QMap<QString, QVariant>* map = changedValues.value(key, NULL);
694
        if (map) {
695
            QString str = current->data(0, Qt::DisplayRole).toString();
696
            QVariant value = current->data(1, Qt::DisplayRole);
lm's avatar
lm committed
697
            // Set parameter on changed list to be transmitted to MAV
698 699 700 701
            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(' ')));
702 703 704 705 706 707
            //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
tstellanova's avatar
tstellanova committed
708
            if (!onboardParameters.value(key)->contains(str) || onboardParameters.value(key)->value(str, value.toDouble()-1) != value) {
709 710 711
                current->setBackground(0, QBrush(QColor(QGC::colorOrange)));
                current->setBackground(1, QBrush(QColor(QGC::colorOrange)));
            }
712

tstellanova's avatar
tstellanova committed
713
            switch ((int)onboardParameters.value(key)->value(str).type())
714 715
            {
            case QVariant::Int:
Lorenz Meier's avatar
Lorenz Meier committed
716 717
            {
                QVariant fixedValue(value.toInt());
tstellanova's avatar
tstellanova committed
718
                onboardParameters.value(key)->insert(str, fixedValue);
Lorenz Meier's avatar
Lorenz Meier committed
719
            }
720 721
                break;
            case QVariant::UInt:
Lorenz Meier's avatar
Lorenz Meier committed
722 723
            {
                QVariant fixedValue(value.toUInt());
tstellanova's avatar
tstellanova committed
724
                onboardParameters.value(key)->insert(str, fixedValue);
Lorenz Meier's avatar
Lorenz Meier committed
725
            }
726 727
                break;
            case QMetaType::Float:
Lorenz Meier's avatar
Lorenz Meier committed
728 729
            {
                QVariant fixedValue(value.toFloat());
tstellanova's avatar
tstellanova committed
730
                onboardParameters.value(key)->insert(str, fixedValue);
Lorenz Meier's avatar
Lorenz Meier committed
731
            }
732
                break;
733 734 735
            case QMetaType::QChar:
            {
                QVariant fixedValue(QChar((unsigned char)value.toUInt()));
tstellanova's avatar
tstellanova committed
736
                onboardParameters.value(key)->insert(str, fixedValue);
737 738
            }
                break;
739 740 741
            default:
                qCritical() << "ABORTED PARAM UPDATE, NO VALID QVARIANT TYPE";
                return;
742 743 744 745 746
            }
        }
    }
}

747
void QGCParamWidget::saveParametersToFile()
748
{
749
    if (!mav) return;
750 751
    QString fileName = QFileDialog::getSaveFileName(this, tr("Save File"), "./parameters.txt", tr("Parameter File (*.txt)"));
    QFile file(fileName);
752
    if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) {
753 754 755 756 757 758 759 760 761 762
        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
763
    QMap<int, QMap<QString, QVariant>*>::iterator i;
tstellanova's avatar
tstellanova committed
764
    for (i = onboardParameters.begin(); i != onboardParameters.end(); ++i) {
765 766
        // Iterate through the parameters of the component
        int compid = i.key();
767
        QMap<QString, QVariant>* comp = i.value();
768
        {
769 770 771
            QMap<QString, QVariant>::iterator j;
            for (j = comp->begin(); j != comp->end(); ++j)
            {
772
                QString paramValue("%1");
773
                QString paramType("%1");
774
                switch ((int)j.value().type())
775 776 777
                {
                case QVariant::Int:
                    paramValue = paramValue.arg(j.value().toInt());
778
                    paramType = paramType.arg(MAV_PARAM_TYPE_INT32);
779 780 781
                    break;
                case QVariant::UInt:
                    paramValue = paramValue.arg(j.value().toUInt());
782
                    paramType = paramType.arg(MAV_PARAM_TYPE_UINT32);
783 784
                    break;
                case QMetaType::Float:
785 786 787
                    // We store parameters as floats, with only 6 digits of precision guaranteed for decimal string conversion
                    // (see IEEE 754, 32 bit single-precision)
                    paramValue = paramValue.arg((double)j.value().toFloat(), 25, 'g', 6);
788
                    paramType = paramType.arg(MAV_PARAM_TYPE_REAL32);
789 790 791 792 793 794
                    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";
795 796 797 798 799 800 801
                in.flush();
            }
        }
    }
    file.close();
}

802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842

void QGCParamWidget::loadedParameterForComponent(int componentId, QStringList& wpParams )
{
    // Set parameter value

    QMap<int, QMap<QString , QVariant> *> changedValues = this->paramDataModel->getPendingParameters();

    // Create changed values data structure if necessary
    if (!changedValues.contains(componentId)) {
        changedValues.insert(componentId, new QMap<QString, QVariant>());
    }

    // Add to changed values
    if (changedValues.value(componentId)->contains(wpParams.at(2))) {
        changedValues.value(componentId)->remove(wpParams.at(2));
    }

    switch (wpParams.at(4).toUInt())
    {
    case (int)MAV_PARAM_TYPE_REAL32:
        //receivedParameterUpdate(wpParams.at(0).toInt(), componentId, wpParams.at(2), wpParams.at(3).toFloat());
        changedValues.value(componentId)->insert(wpParams.at(2), wpParams.at(3).toFloat());
        setParameter(componentId, wpParams.at(2), wpParams.at(3).toFloat());
        break;
    case (int)MAV_PARAM_TYPE_UINT32:
        //receivedParameterUpdate(wpParams.at(0).toInt(), componentId, wpParams.at(2), wpParams.at(3).toUInt());
        changedValues.value(componentId)->insert(wpParams.at(2), wpParams.at(3).toUInt());
        setParameter(componentId, wpParams.at(2), QVariant(wpParams.at(3).toUInt()));
        break;
    case (int)MAV_PARAM_TYPE_INT32:
        //receivedParameterUpdate(wpParams.at(0).toInt(), componentId, wpParams.at(2), wpParams.at(3).toInt());
        changedValues.value(componentId)->insert(wpParams.at(2), wpParams.at(3).toInt());
        setParameter(componentId, wpParams.at(2), QVariant(wpParams.at(3).toInt()));
        break;
    default:
        qDebug() << "FAILED LOADING PARAM" << wpParams.at(2) << "NO KNOWN DATA TYPE";
    }

}

void QGCParamWidget::loadParametersFromFile()
843
{
844
    if (!mav) return;
845 846 847 848 849
    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
850
    bool userWarned = false;
851 852

    QTextStream in(&file);
853
    while (!in.atEnd()) {
854
        QString line = in.readLine();
855
        if (!line.startsWith("#")) {
856
            QStringList wpParams = line.split("\t");
857
            if (wpParams.size() == 5) {
858
                // Only load parameters for right mav
Lorenz Meier's avatar
Lorenz Meier committed
859 860 861 862
                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
863

Lorenz Meier's avatar
Lorenz Meier committed
864
                bool changed = false;
865
                int componentId = wpParams.at(1).toInt();
Lorenz Meier's avatar
Lorenz Meier committed
866
                QString parameterName = wpParams.at(2);
tstellanova's avatar
tstellanova committed
867 868
                if (!onboardParameters.contains(componentId) ||
                        fabs((static_cast<float>(onboardParameters.value(componentId)->value(parameterName, wpParams.at(3).toDouble()).toDouble())) - (wpParams.at(3).toDouble())) > 2.0f * FLT_EPSILON) {
Lorenz Meier's avatar
Lorenz Meier committed
869 870 871
                    changed = true;
                    qDebug() << "Changed" << parameterName << "VAL" << wpParams.at(3).toDouble();
                }
lm's avatar
lm committed
872

873 874
                if (changed) {
                    loadedParameterForComponent(componentId,wpParams);
875
                }
Lorenz Meier's avatar
Lorenz Meier committed
876

lm's avatar
lm committed
877 878
            }
        }
879
    }
880 881
    file.close();

lm's avatar
lm committed
882 883
}

884 885 886 887 888 889 890 891 892
/**
 * 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)
{
893
    if (enabled) {
894
        retransmissionTimer.start(retransmissionTimeout);
895
    } else {
896 897 898 899 900 901
        retransmissionTimer.stop();
    }
}

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

lm's avatar
lm committed
905 906
        // Check for timeout
        // stop retransmission attempts on timeout
907
        if (QGC::groundTimeMilliseconds() > transmissionTimeout) {
lm's avatar
lm committed
908 909 910 911 912 913 914
            setRetransmissionGuardEnabled(false);
            transmissionActive = false;

            // Empty read retransmission list
            // Empty write retransmission list
            int missingReadCount = 0;
            QList<int> readKeys = transmissionMissingPackets.keys();
915
            foreach (int component, readKeys) {
lm's avatar
lm committed
916 917 918 919 920 921 922
                missingReadCount += transmissionMissingPackets.value(component)->count();
                transmissionMissingPackets.value(component)->clear();
            }

            // Empty write retransmission list
            int missingWriteCount = 0;
            QList<int> writeKeys = transmissionMissingWriteAckPackets.keys();
923
            foreach (int component, writeKeys) {
lm's avatar
lm committed
924 925 926 927 928 929 930 931
                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
932
        QMap<int, QMap<QString, QVariant>*>::iterator i;
tstellanova's avatar
tstellanova committed
933
        for (i = onboardParameters.begin(); i != onboardParameters.end(); ++i) {
934 935
            // Iterate through the parameters of the component
            int component = i.key();
lm's avatar
lm committed
936
            // Request n parameters from this component (at maximum)
937
            QList<int> * paramList = transmissionMissingPackets.value(component, NULL);
938
            if (paramList) {
939
                int count = 0;
940 941
                foreach (int id, *paramList) {
                    if (count < retransmissionBurstRequestSize) {
942
                        //qDebug() << __FILE__ << __LINE__ << "RETRANSMISSION GUARD REQUESTS RETRANSMISSION OF PARAM #" << id << "FROM COMPONENT #" << component;
943
                        emit requestParameter(component, id);
lm's avatar
lm committed
944
                        statusLabel->setText(tr("Requested retransmission of #%1").arg(id+1));
945
                        count++;
946
                    } else {
947 948 949 950 951
                        break;
                    }
                }
            }
        }
lm's avatar
lm committed
952 953 954 955 956

        // Re-request at maximum retransmissionBurstRequestSize parameters at once
        // to prevent write-request link flooding
        // Empty write retransmission list
        QList<int> writeKeys = transmissionMissingWriteAckPackets.keys();
957
        foreach (int component, writeKeys) {
lm's avatar
lm committed
958
            int count = 0;
959
            QMap <QString, QVariant>* missingParams = transmissionMissingWriteAckPackets.value(component);
960 961
            foreach (QString key, missingParams->keys()) {
                if (count < retransmissionBurstRequestSize) {
lm's avatar
lm committed
962
                    // Re-request write operation
963
                    QVariant value = missingParams->value(key);
tstellanova's avatar
tstellanova committed
964
                    switch ((int)onboardParameters.value(component)->value(key).type())
965 966
                    {
                    case QVariant::Int:
Lorenz Meier's avatar
Lorenz Meier committed
967 968 969 970
                    {
                        QVariant fixedValue(value.toInt());
                        emit parameterChanged(component, key, fixedValue);
                    }
971 972
                        break;
                    case QVariant::UInt:
Lorenz Meier's avatar
Lorenz Meier committed
973 974 975 976
                    {
                        QVariant fixedValue(value.toUInt());
                        emit parameterChanged(component, key, fixedValue);
                    }
977 978
                        break;
                    case QMetaType::Float:
Lorenz Meier's avatar
Lorenz Meier committed
979 980 981 982
                    {
                        QVariant fixedValue(value.toFloat());
                        emit parameterChanged(component, key, fixedValue);
                    }
983 984
                        break;
                    default:
985
                        //qCritical() << "ABORTED PARAM RETRANSMISSION, NO VALID QVARIANT TYPE";
986 987
                        return;
                    }
988
                    statusLabel->setText(tr("Requested rewrite of: %1: %2").arg(key).arg(missingParams->value(key).toDouble()));
lm's avatar
lm committed
989
                    count++;
990
                } else {
lm's avatar
lm committed
991 992 993 994
                    break;
                }
            }
        }
995
    } else {
996
        //qDebug() << __FILE__ << __LINE__ << "STOPPING RETRANSMISSION GUARD GRACEFULLY";
997 998 999 1000
        setRetransmissionGuardEnabled(false);
    }
}

1001

1002 1003 1004 1005 1006
/**
 * The .. signal is emitted
 */
void QGCParamWidget::requestParameterUpdate(int component, const QString& parameter)
{
1007
    if (mav) mav->requestParameter(component, parameter);
1008 1009 1010
}


1011 1012 1013 1014 1015
/**
 * @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
 */
1016
void QGCParamWidget::setParameter(int component, QString parameterName, QVariant value)
1017
{
1018 1019 1020 1021 1022 1023 1024 1025 1026 1027
    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;
    }
tstellanova's avatar
tstellanova committed
1028
    if (onboardParameters.value(component)->value(parameterName) == value)
1029
    {
1030
        statusLabel->setText(tr("REJ. %1 > max").arg(value.toDouble()));
1031 1032
        return;
    }
1033

tstellanova's avatar
tstellanova committed
1034
    switch ((int)onboardParameters.value(component)->value(parameterName).type())
1035
    {
1036 1037 1038 1039 1040 1041 1042
    case QVariant::Char:
    {
        QVariant fixedValue(QChar((unsigned char)value.toInt()));
        emit parameterChanged(component, parameterName, fixedValue);
        //qDebug() << "PARAM WIDGET SENT:" << fixedValue;
    }
        break;
1043
    case QVariant::Int:
Lorenz Meier's avatar
Lorenz Meier committed
1044 1045 1046 1047 1048
    {
        QVariant fixedValue(value.toInt());
        emit parameterChanged(component, parameterName, fixedValue);
        //qDebug() << "PARAM WIDGET SENT:" << fixedValue;
    }
1049 1050
        break;
    case QVariant::UInt:
Lorenz Meier's avatar
Lorenz Meier committed
1051 1052 1053 1054 1055
    {
        QVariant fixedValue(value.toUInt());
        emit parameterChanged(component, parameterName, fixedValue);
        //qDebug() << "PARAM WIDGET SENT:" << fixedValue;
    }
1056 1057
        break;
    case QMetaType::Float:
Lorenz Meier's avatar
Lorenz Meier committed
1058 1059 1060 1061 1062
    {
        QVariant fixedValue(value.toFloat());
        emit parameterChanged(component, parameterName, fixedValue);
        //qDebug() << "PARAM WIDGET SENT:" << fixedValue;
    }
1063 1064 1065 1066 1067 1068
        break;
    default:
        qCritical() << "ABORTED PARAM SEND, NO VALID QVARIANT TYPE";
        return;
    }

lm's avatar
lm committed
1069 1070
    // Wait for parameter to be written back
    // mark it therefore as missing
1071 1072 1073
    if (!transmissionMissingWriteAckPackets.contains(component))
    {
        transmissionMissingWriteAckPackets.insert(component, new QMap<QString, QVariant>());
lm's avatar
lm committed
1074 1075 1076 1077 1078 1079
    }

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

    // Set timeouts
Lorenz Meier's avatar
Lorenz Meier committed
1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091
    if (transmissionActive)
    {
        transmissionTimeout += rewriteTimeout;
    }
    else
    {
        quint64 newTransmissionTimeout = QGC::groundTimeMilliseconds() + rewriteTimeout;
        if (newTransmissionTimeout > transmissionTimeout)
        {
            transmissionTimeout = newTransmissionTimeout;
        }
        transmissionActive = true;
lm's avatar
lm committed
1092
    }
Lorenz Meier's avatar
Lorenz Meier committed
1093

lm's avatar
lm committed
1094 1095
    // Enable guard / reset timeouts
    setRetransmissionGuardEnabled(true);
1096 1097
}

1098 1099 1100
/**
 * Set all parameter in the parameter tree on the MAV
 */
1101 1102
void QGCParamWidget::setParameters()
{
1103
    // Iterate through all components, through all parameters and emit them
1104
    int parametersSent = 0;
1105
    QMap<int, QMap<QString, QVariant>*> changedValues = paramDataModel->getPendingParameters();
1106
    QMap<int, QMap<QString, QVariant>*>::iterator i;
1107
    for (i = changedValues.begin(); i != changedValues.end(); ++i) {
1108 1109
        // Iterate through the parameters of the component
        int compid = i.key();
1110
        QMap<QString, QVariant>* comp = i.value();
1111
        {
1112
            QMap<QString, QVariant>::iterator j;
1113
            for (j = comp->begin(); j != comp->end(); ++j) {
1114
                setParameter(compid, j.key(), j.value());
1115
                parametersSent++;
1116 1117 1118 1119
            }
        }
    }

lm's avatar
lm committed
1120
    // Change transmission status if necessary
1121
    if (parametersSent == 0) {
1122
        statusLabel->setText(tr("No transmission: No changed values."));
1123
    } else {
1124
        statusLabel->setText(tr("Transmitting %1 parameters.").arg(parametersSent));
lm's avatar
lm committed
1125
        // Set timeouts
Lorenz Meier's avatar
Lorenz Meier committed
1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136
        if (transmissionActive)
        {
            transmissionTimeout += parametersSent*rewriteTimeout;
        }
        else
        {
            transmissionActive = true;
            quint64 newTransmissionTimeout = QGC::groundTimeMilliseconds() + parametersSent*rewriteTimeout;
            if (newTransmissionTimeout > transmissionTimeout) {
                transmissionTimeout = newTransmissionTimeout;
            }
lm's avatar
lm committed
1137 1138 1139
        }
        // Enable guard
        setRetransmissionGuardEnabled(true);
1140
    }
1141 1142
}

1143 1144 1145 1146
/**
 * Write the current onboard parameters from RAM into
 * permanent storage, e.g. EEPROM or harddisk
 */
1147 1148
void QGCParamWidget::writeParameters()
{
1149 1150 1151
    int changedParamCount = 0;

    QMap<int, QMap<QString, QVariant>*>::iterator i;
1152 1153 1154
    QMap<int, QMap<QString, QVariant>*> changedValues = paramDataModel->getPendingParameters();

    for (i = changedValues.begin(); i != changedValues.end() , (0 == changedParamCount);  ++i)
1155 1156 1157
    {
        // Iterate through the parameters of the component
        QMap<QString, QVariant>* comp = i.value();
1158 1159
        QMap<QString, QVariant>::iterator j;
        for (j = comp->begin(); j != comp->end(); ++j)
1160
        {
1161 1162
            changedParamCount++;
            break;//it only takes one changed param to warrant warning the user
1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176
        }
    }

    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();
    }
1177 1178 1179 1180
}

void QGCParamWidget::readParameters()
{
1181
    if (!mav) return;
1182
    mav->readParametersFromStorage();
1183 1184
}

1185 1186 1187
/**
 * Clear all data in the parameter widget
 */
pixhawk's avatar
pixhawk committed
1188 1189 1190
void QGCParamWidget::clear()
{
    tree->clear();
lm's avatar
lm committed
1191
    components->clear();
pixhawk's avatar
pixhawk committed
1192
}