QGCVehicleConfig.cc 20.6 KB
Newer Older
1 2 3 4
#include <limits.h>

#include <QTimer>

5
#include "QGCVehicleConfig.h"
6
#include "UASManager.h"
7
#include "QGC.h"
8
#include "QGCToolWidget.h"
9 10 11 12
#include "ui_QGCVehicleConfig.h"

QGCVehicleConfig::QGCVehicleConfig(QWidget *parent) :
    QWidget(parent),
13
    mav(NULL),
14
    chanCount(0),
15
    changed(true),
16 17 18 19 20 21 22 23 24
    rc_mode(RC_MODE_2),
    rcRoll(0.0f),
    rcPitch(0.0f),
    rcYaw(0.0f),
    rcThrottle(0.0f),
    rcMode(0.0f),
    rcAux1(0.0f),
    rcAux2(0.0f),
    rcAux3(0.0f),
25
    calibrationEnabled(false),
26 27
    ui(new Ui::QGCVehicleConfig)
{
28
    setObjectName("QGC_VEHICLECONFIG");
29
    ui->setupUi(this);
30 31 32 33

    requestCalibrationRC();
    if (mav) mav->requestParameter(0, "RC_TYPE");

34 35
    ui->rcModeComboBox->setCurrentIndex((int)rc_mode - 1);

36
    ui->rcCalibrationButton->setCheckable(true);
37 38
    connect(ui->rcCalibrationButton, SIGNAL(clicked(bool)), this, SLOT(toggleCalibrationRC(bool)));
    connect(ui->storeButton, SIGNAL(clicked()), this, SLOT(writeParameters()));
39
    connect(ui->rcModeComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(setRCModeIndex(int)));
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
    connect(ui->setTrimButton, SIGNAL(clicked()), this, SLOT(setTrimPositions()));

    /* Connect RC mapping assignments */
    connect(ui->rollSpinBox, SIGNAL(valueChanged(int)), this, SLOT(setRollChan(int)));
    connect(ui->pitchSpinBox, SIGNAL(valueChanged(int)), this, SLOT(setPitchChan(int)));
    connect(ui->yawSpinBox, SIGNAL(valueChanged(int)), this, SLOT(setYawChan(int)));
    connect(ui->throttleSpinBox, SIGNAL(valueChanged(int)), this, SLOT(setThrottleChan(int)));
    connect(ui->modeSpinBox, SIGNAL(valueChanged(int)), this, SLOT(setModeChan(int)));
    connect(ui->aux1SpinBox, SIGNAL(valueChanged(int)), this, SLOT(setAux1Chan(int)));
    connect(ui->aux2SpinBox, SIGNAL(valueChanged(int)), this, SLOT(setAux2Chan(int)));
    connect(ui->aux3SpinBox, SIGNAL(valueChanged(int)), this, SLOT(setAux3Chan(int)));

    // Connect RC reverse assignments
    connect(ui->invertCheckBox, SIGNAL(clicked(bool)), this, SLOT(setRollInverted(bool)));
    connect(ui->invertCheckBox_2, SIGNAL(clicked(bool)), this, SLOT(setPitchInverted(bool)));
    connect(ui->invertCheckBox_3, SIGNAL(clicked(bool)), this, SLOT(setYawInverted(bool)));
    connect(ui->invertCheckBox_4, SIGNAL(clicked(bool)), this, SLOT(setThrottleInverted(bool)));
    connect(ui->invertCheckBox_5, SIGNAL(clicked(bool)), this, SLOT(setModeInverted(bool)));
    connect(ui->invertCheckBox_6, SIGNAL(clicked(bool)), this, SLOT(setAux1Inverted(bool)));
    connect(ui->invertCheckBox_7, SIGNAL(clicked(bool)), this, SLOT(setAux2Inverted(bool)));
    connect(ui->invertCheckBox_8, SIGNAL(clicked(bool)), this, SLOT(setAux3Inverted(bool)));
61 62 63 64 65

    connect(UASManager::instance(), SIGNAL(activeUASSet(UASInterface*)), this, SLOT(setActiveUAS(UASInterface*)));

    setActiveUAS(UASManager::instance()->getActiveUAS());

66
    for (unsigned int i = 0; i < chanMax; i++)
67
    {
68
        rcValue[i] = UINT16_MAX;
69
        rcMapping[i] = i;
70 71 72 73 74
    }

    updateTimer.setInterval(150);
    connect(&updateTimer, SIGNAL(timeout()), this, SLOT(updateView()));
    updateTimer.start();
75 76 77 78 79 80
}

QGCVehicleConfig::~QGCVehicleConfig()
{
    delete ui;
}
81

82 83 84 85 86 87 88 89
void QGCVehicleConfig::setRCModeIndex(int newRcMode)
{
    if (newRcMode > 0 && newRcMode < 5)
    {
        rc_mode = (enum RC_MODE) (newRcMode+1);
        changed = true;
    }
}
90 91 92 93 94 95 96 97 98 99 100 101 102

void QGCVehicleConfig::toggleCalibrationRC(bool enabled)
{
    if (enabled)
    {
        startCalibrationRC();
    }
    else
    {
        stopCalibrationRC();
    }
}

103 104 105
void QGCVehicleConfig::setTrimPositions()
{
    // Set trim for roll, pitch, yaw, throttle
106 107 108 109 110 111 112 113
    rcTrim[rcMapping[0]] = rcValue[rcMapping[0]]; // roll
    rcTrim[rcMapping[1]] = rcValue[rcMapping[1]]; // pitch
    rcTrim[rcMapping[2]] = rcValue[rcMapping[2]]; // yaw
    rcTrim[rcMapping[3]] = rcMin[rcMapping[3]];   // throttle
    rcTrim[rcMapping[4]] = ((rcMax[rcMapping[4]] - rcMin[rcMapping[4]]) / 2.0f) + rcMin[rcMapping[4]];   // mode sw
    rcTrim[rcMapping[5]] = ((rcMax[rcMapping[5]] - rcMin[rcMapping[5]]) / 2.0f) + rcMin[rcMapping[5]];   // aux 1
    rcTrim[rcMapping[6]] = ((rcMax[rcMapping[6]] - rcMin[rcMapping[6]]) / 2.0f) + rcMin[rcMapping[6]];   // aux 2
    rcTrim[rcMapping[7]] = ((rcMax[rcMapping[7]] - rcMin[rcMapping[7]]) / 2.0f) + rcMin[rcMapping[7]];   // aux 3
114 115 116 117 118 119 120
}

void QGCVehicleConfig::detectChannelInversion()
{

}

121 122 123
void QGCVehicleConfig::startCalibrationRC()
{
    ui->rcTypeComboBox->setEnabled(false);
124
    ui->rcCalibrationButton->setText(tr("Stop RC Calibration"));
125
    resetCalibrationRC();
126
    calibrationEnabled = true;
127 128 129 130
}

void QGCVehicleConfig::stopCalibrationRC()
{
131
    calibrationEnabled = false;
132
    ui->rcTypeComboBox->setEnabled(true);
133
    ui->rcCalibrationButton->setText(tr("Start RC Calibration"));
134 135 136 137 138 139 140 141 142 143 144 145 146 147
}

void QGCVehicleConfig::setActiveUAS(UASInterface* active)
{
    // Do nothing if system is the same or NULL
    if ((active == NULL) || mav == active) return;

    if (mav)
    {
        // Disconnect old system
        disconnect(mav, SIGNAL(remoteControlChannelRawChanged(int,float)), this,
                   SLOT(remoteControlChannelRawChanged(int,float)));
        disconnect(mav, SIGNAL(parameterChanged(int,int,QString,QVariant)), this,
                   SLOT(parameterChanged(int,int,QString,QVariant)));
148 149 150 151 152

        foreach (QGCToolWidget* tool, toolWidgets)
        {
            delete tool;
        }
153
        toolWidgets.clear();
154 155
    }

156 157 158
    // Reset current state
    resetCalibrationRC();

159 160
    chanCount = 0;

161 162
    // Connect new system
    mav = active;
163 164 165 166
    connect(active, SIGNAL(remoteControlChannelRawChanged(int,float)), this,
               SLOT(remoteControlChannelRawChanged(int,float)));
    connect(active, SIGNAL(parameterChanged(int,int,QString,QVariant)), this,
               SLOT(parameterChanged(int,int,QString,QVariant)));
167 168 169 170 171 172 173 174 175 176 177 178 179

    mav->requestParameters();

    QString defaultsDir = qApp->applicationDirPath() + "/files/" + mav->getAutopilotTypeName().toLower() + "/widgets/";

    QGCToolWidget* tool;

    // Load calibration
    tool = new QGCToolWidget("", this);
    if (tool->loadSettings(defaultsDir + "px4_calibration.qgw", false))
    {
        toolWidgets.append(tool);
        ui->sensorLayout->addWidget(tool);
180 181
    } else {
        delete tool;
182
    }
183

184 185 186 187 188 189
    // Load multirotor attitude pid
    tool = new QGCToolWidget("", this);
    if (tool->loadSettings(defaultsDir + "px4_mc_attitude_pid_params.qgw", false))
    {
        toolWidgets.append(tool);
        ui->multiRotorAttitudeLayout->addWidget(tool);
190 191
    } else {
        delete tool;
192 193 194 195 196 197 198 199
    }

    // Load multirotor position pid
    tool = new QGCToolWidget("", this);
    if (tool->loadSettings(defaultsDir + "px4_mc_position_pid_params.qgw", false))
    {
        toolWidgets.append(tool);
        ui->multiRotorPositionLayout->addWidget(tool);
200 201
    } else {
        delete tool;
202 203 204 205 206 207 208 209
    }

    // Load fixed wing attitude pid
    tool = new QGCToolWidget("", this);
    if (tool->loadSettings(defaultsDir + "px4_fw_attitude_pid_params.qgw", false))
    {
        toolWidgets.append(tool);
        ui->fixedWingAttitudeLayout->addWidget(tool);
210 211
    } else {
        delete tool;
212 213 214 215 216 217 218 219
    }

    // Load fixed wing position pid
    tool = new QGCToolWidget("", this);
    if (tool->loadSettings(defaultsDir + "px4_fw_position_pid_params.qgw", false))
    {
        toolWidgets.append(tool);
        ui->fixedWingPositionLayout->addWidget(tool);
220 221
    } else {
        delete tool;
222 223 224
    }

    updateStatus(QString("Reading from system %1").arg(mav->getUASName()));
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
}

void QGCVehicleConfig::resetCalibrationRC()
{
    for (unsigned int i = 0; i < chanMax; ++i)
    {
        rcMin[i] = INT_MAX;
        rcMax[i] = INT_MIN;
    }
}

/**
 * Sends the RC calibration to the vehicle and stores it in EEPROM
 */
void QGCVehicleConfig::writeCalibrationRC()
{
    if (!mav) return;

    QString minTpl("RC%1_MIN");
    QString maxTpl("RC%1_MAX");
    QString trimTpl("RC%1_TRIM");
    QString revTpl("RC%1_REV");

    // Do not write the RC type, as these values depend on this
    // active onboard parameter

251
    for (unsigned int i = 0; i < chanCount; ++i)
252
    {
253
        //qDebug() << "SENDING" << minTpl.arg(i+1) << rcMin[i];
Lorenz Meier's avatar
Lorenz Meier committed
254
        mav->setParameter(0, minTpl.arg(i+1), rcMin[i]);
255
        QGC::SLEEP::usleep(50000);
Lorenz Meier's avatar
Lorenz Meier committed
256
        mav->setParameter(0, trimTpl.arg(i+1), rcTrim[i]);
257
        QGC::SLEEP::usleep(50000);
Lorenz Meier's avatar
Lorenz Meier committed
258
        mav->setParameter(0, maxTpl.arg(i+1), rcMax[i]);
259 260 261
        QGC::SLEEP::usleep(50000);
        mav->setParameter(0, revTpl.arg(i+1), (rcRev[i]) ? -1.0f : 1.0f);
        QGC::SLEEP::usleep(50000);
262 263 264
    }

    // Write mappings
265 266 267 268
    mav->setParameter(0, "RC_MAP_ROLL", (int32_t)(rcMapping[0]+1));
    QGC::SLEEP::usleep(50000);
    mav->setParameter(0, "RC_MAP_PITCH", (int32_t)(rcMapping[1]+1));
    QGC::SLEEP::usleep(50000);
269
    mav->setParameter(0, "RC_MAP_YAW", (int32_t)(rcMapping[2]+1));
270
    QGC::SLEEP::usleep(50000);
271
    mav->setParameter(0, "RC_MAP_THROTTLE", (int32_t)(rcMapping[3]+1));
272 273 274 275 276 277 278 279 280
    QGC::SLEEP::usleep(50000);
    mav->setParameter(0, "RC_MAP_MODE_SW", (int32_t)(rcMapping[4]+1));
    QGC::SLEEP::usleep(50000);
    mav->setParameter(0, "RC_MAP_AUX1", (int32_t)(rcMapping[5]+1));
    QGC::SLEEP::usleep(50000);
    mav->setParameter(0, "RC_MAP_AUX2", (int32_t)(rcMapping[6]+1));
    QGC::SLEEP::usleep(50000);
    mav->setParameter(0, "RC_MAP_AUX3", (int32_t)(rcMapping[7]+1));
    QGC::SLEEP::usleep(50000);
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
}

void QGCVehicleConfig::requestCalibrationRC()
{
    if (!mav) return;

    QString minTpl("RC%1_MIN");
    QString maxTpl("RC%1_MAX");
    QString trimTpl("RC%1_TRIM");
    QString revTpl("RC%1_REV");

    // Do not request the RC type, as these values depend on this
    // active onboard parameter

    for (unsigned int i = 0; i < chanMax; ++i)
    {
Lorenz Meier's avatar
Lorenz Meier committed
297
        mav->requestParameter(0, minTpl.arg(i+1));
Lorenz Meier's avatar
Lorenz Meier committed
298
        QGC::SLEEP::usleep(5000);
Lorenz Meier's avatar
Lorenz Meier committed
299
        mav->requestParameter(0, trimTpl.arg(i+1));
Lorenz Meier's avatar
Lorenz Meier committed
300
        QGC::SLEEP::usleep(5000);
Lorenz Meier's avatar
Lorenz Meier committed
301
        mav->requestParameter(0, maxTpl.arg(i+1));
Lorenz Meier's avatar
Lorenz Meier committed
302
        QGC::SLEEP::usleep(5000);
Lorenz Meier's avatar
Lorenz Meier committed
303
        mav->requestParameter(0, revTpl.arg(i+1));
Lorenz Meier's avatar
Lorenz Meier committed
304
        QGC::SLEEP::usleep(5000);
305 306 307 308 309 310 311
    }
}

void QGCVehicleConfig::writeParameters()
{
    updateStatus(tr("Writing all onboard parameters."));
    writeCalibrationRC();
312
    mav->writeParametersToStorage();
313 314 315 316
}

void QGCVehicleConfig::remoteControlChannelRawChanged(int chan, float val)
{
317 318
    // Check if index and values are sane
    if (chan < 0 || static_cast<unsigned int>(chan) >= chanMax || val < 500 || val > 2500)
319 320
        return;

321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
    if (chan + 1 > chanCount) {
        chanCount = chan+1;
    }

    // Update calibration data
    if (calibrationEnabled) {
        if (val < rcMin[chan])
        {
            rcMin[chan] = val;
        }

        if (val > rcMax[chan])
        {
            rcMax[chan] = val;
        }
336 337
    }

338 339 340
    // Raw value
    rcValue[chan] = val;

341 342 343 344
    // Normalized value
    float normalized;

    if (val >= rcTrim[chan])
345
    {
346
        normalized = (val - rcTrim[chan])/(rcMax[chan] - rcTrim[chan]);
347
    }
348 349 350 351 352 353 354 355 356
    else
    {
        normalized = -(rcTrim[chan] - val)/(rcTrim[chan] - rcMin[chan]);
    }

    // Bound
    normalized = qBound(-1.0f, normalized, 1.0f);
    // Invert
    normalized = (rcRev[chan]) ? -1.0f*normalized : normalized;
357

358 359 360
    if (chan == rcMapping[0])
    {
        // ROLL
361
        rcRoll = normalized;
362
    }
363
    if (chan == rcMapping[1])
364 365
    {
        // PITCH
366
        rcPitch = normalized;
367
    }
368
    if (chan == rcMapping[2])
369
    {
370
        rcYaw = normalized;
371
    }
372
    if (chan == rcMapping[3])
373 374
    {
        // THROTTLE
375 376 377 378
        if (rcRev[chan]) {
            rcThrottle = 1.0f + normalized;
        } else {
            rcThrottle = normalized;
379
        }
380 381

        rcThrottle = qBound(0.0f, rcThrottle, 1.0f);
382
    }
383
    if (chan == rcMapping[4])
384 385
    {
        // MODE SWITCH
386
        rcMode = normalized;
387
    }
388
    if (chan == rcMapping[5])
389 390
    {
        // AUX1
391
        rcAux1 = normalized;
392
    }
393
    if (chan == rcMapping[6])
394 395
    {
        // AUX2
396
        rcAux2 = normalized;
397
    }
398
    if (chan == rcMapping[7])
399 400
    {
        // AUX3
401
        rcAux3 = normalized;
402 403 404 405
    }

    changed = true;

406
    //qDebug() << "RC CHAN:" << chan << "PPM:" << val << "NORMALIZED:" << normalized;
407 408
}

409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
void QGCVehicleConfig::updateInvertedCheckboxes(int index)
{
    unsigned int mapindex = rcMapping[index];

    switch (mapindex)
    {
    case 0:
        ui->invertCheckBox->setChecked(rcRev[index]);
        break;
    case 1:
        ui->invertCheckBox_2->setChecked(rcRev[index]);
        break;
    case 2:
        ui->invertCheckBox_3->setChecked(rcRev[index]);
        break;
    case 3:
        ui->invertCheckBox_4->setChecked(rcRev[index]);
        break;
    case 4:
        ui->invertCheckBox_5->setChecked(rcRev[index]);
        break;
    case 5:
        ui->invertCheckBox_6->setChecked(rcRev[index]);
        break;
    case 6:
        ui->invertCheckBox_7->setChecked(rcRev[index]);
        break;
    case 7:
        ui->invertCheckBox_8->setChecked(rcRev[index]);
        break;
    }
}

442 443 444 445
void QGCVehicleConfig::parameterChanged(int uas, int component, QString parameterName, QVariant value)
{
    Q_UNUSED(uas);
    Q_UNUSED(component);
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461

    // Channel calibration values
    QRegExp minTpl("RC?_MIN");
    minTpl.setPatternSyntax(QRegExp::Wildcard);
    QRegExp maxTpl("RC?_MAX");
    maxTpl.setPatternSyntax(QRegExp::Wildcard);
    QRegExp trimTpl("RC?_TRIM");
    trimTpl.setPatternSyntax(QRegExp::Wildcard);
    QRegExp revTpl("RC?_REV");
    revTpl.setPatternSyntax(QRegExp::Wildcard);

    // Do not write the RC type, as these values depend on this
    // active onboard parameter

    if (minTpl.exactMatch(parameterName)) {
        bool ok;
Lorenz Meier's avatar
Lorenz Meier committed
462
        unsigned int index = parameterName.mid(2, 1).toInt(&ok) - 1;
463
        //qDebug() << "PARAM:" << parameterName << "index:" << index;
464
        if (ok && (index >= 0) && (index < chanMax))
465 466 467 468 469 470 471
        {
            rcMin[index] = value.toInt();
        }
    }

    if (maxTpl.exactMatch(parameterName)) {
        bool ok;
Lorenz Meier's avatar
Lorenz Meier committed
472
        unsigned int index = parameterName.mid(2, 1).toInt(&ok) - 1;
473
        if (ok && (index >= 0) && (index < chanMax))
474 475 476 477 478 479 480
        {
            rcMax[index] = value.toInt();
        }
    }

    if (trimTpl.exactMatch(parameterName)) {
        bool ok;
Lorenz Meier's avatar
Lorenz Meier committed
481
        unsigned int index = parameterName.mid(2, 1).toInt(&ok) - 1;
482
        if (ok && (index >= 0) && (index < chanMax))
483 484 485 486 487 488 489
        {
            rcTrim[index] = value.toInt();
        }
    }

    if (revTpl.exactMatch(parameterName)) {
        bool ok;
Lorenz Meier's avatar
Lorenz Meier committed
490
        unsigned int index = parameterName.mid(2, 1).toInt(&ok) - 1;
491
        if (ok && (index >= 0) && (index < chanMax))
492 493
        {
            rcRev[index] = (value.toInt() == -1) ? true : false;
494
            updateInvertedCheckboxes(index);
495 496 497 498 499 500 501 502
        }
    }

//        mav->setParameter(0, trimTpl.arg(i), rcTrim[i]);
//        mav->setParameter(0, maxTpl.arg(i), rcMax[i]);
//        mav->setParameter(0, revTpl.arg(i), (rcRev[i]) ? -1 : 1);
//    }

503 504 505 506 507 508 509 510
    if (rcTypeUpdateRequested > 0 && parameterName == QString("RC_TYPE"))
    {
        rcTypeUpdateRequested = 0;
        updateStatus(tr("Received RC type update, setting parameters based on model."));
        rcType = value.toInt();
        // Request all other parameters as well
        requestCalibrationRC();
    }
511 512 513 514

    // Order is: roll, pitch, yaw, throttle, mode sw, aux 1-3

    if (parameterName.contains("RC_MAP_ROLL")) {
515 516
        rcMapping[0] = value.toInt() - 1;
        ui->rollSpinBox->setValue(rcMapping[0]+1);
517 518 519
    }

    if (parameterName.contains("RC_MAP_PITCH")) {
520 521
        rcMapping[1] = value.toInt() - 1;
        ui->pitchSpinBox->setValue(rcMapping[1]+1);
522 523 524
    }

    if (parameterName.contains("RC_MAP_YAW")) {
525 526
        rcMapping[2] = value.toInt() - 1;
        ui->yawSpinBox->setValue(rcMapping[2]+1);
527 528 529
    }

    if (parameterName.contains("RC_MAP_THROTTLE")) {
530 531
        rcMapping[3] = value.toInt() - 1;
        ui->throttleSpinBox->setValue(rcMapping[3]+1);
532 533 534
    }

    if (parameterName.contains("RC_MAP_MODE_SW")) {
535 536
        rcMapping[4] = value.toInt() - 1;
        ui->modeSpinBox->setValue(rcMapping[4]+1);
537 538 539
    }

    if (parameterName.contains("RC_MAP_AUX1")) {
540 541
        rcMapping[5] = value.toInt() - 1;
        ui->aux1SpinBox->setValue(rcMapping[5]+1);
542 543 544
    }

    if (parameterName.contains("RC_MAP_AUX2")) {
545
        rcMapping[6] = value.toInt() - 1;
546
        ui->aux2SpinBox->setValue(rcMapping[6]+1);
547 548 549
    }

    if (parameterName.contains("RC_MAP_AUX3")) {
550
        rcMapping[7] = value.toInt() - 1;
551
        ui->aux3SpinBox->setValue(rcMapping[7]+1);
552 553 554 555 556
    }

    // Scaling

    if (parameterName.contains("RC_SCALE_ROLL")) {
557
        rcScaling[0] = value.toFloat();
558 559 560
    }

    if (parameterName.contains("RC_SCALE_PITCH")) {
561
        rcScaling[1] = value.toFloat();
562 563 564
    }

    if (parameterName.contains("RC_SCALE_YAW")) {
565
        rcScaling[2] = value.toFloat();
566 567 568
    }

    if (parameterName.contains("RC_SCALE_THROTTLE")) {
569
        rcScaling[3] = value.toFloat();
570 571 572
    }

    if (parameterName.contains("RC_SCALE_MODE_SW")) {
573
        rcScaling[4] = value.toFloat();
574 575 576
    }

    if (parameterName.contains("RC_SCALE_AUX1")) {
577
        rcScaling[5] = value.toFloat();
578 579 580
    }

    if (parameterName.contains("RC_SCALE_AUX2")) {
581
        rcScaling[6] = value.toFloat();
582 583 584
    }

    if (parameterName.contains("RC_SCALE_AUX3")) {
585
        rcScaling[7] = value.toFloat();
586
    }
587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626
}

void QGCVehicleConfig::updateStatus(const QString& str)
{
    ui->statusLabel->setText(str);
    ui->statusLabel->setStyleSheet("");
}

void QGCVehicleConfig::updateError(const QString& str)
{
    ui->statusLabel->setText(str);
    ui->statusLabel->setStyleSheet(QString("QLabel { margin: 0px 2px; font: 14px; color: %1; background-color: %2; }").arg(QGC::colorDarkWhite.name()).arg(QGC::colorMagenta.name()));
}

void QGCVehicleConfig::setRCType(int type)
{
    if (!mav) return;

    // XXX TODO Add handling of RC_TYPE vs non-RC_TYPE here

    mav->setParameter(0, "RC_TYPE", type);
    rcTypeUpdateRequested = QGC::groundTimeMilliseconds();
    QTimer::singleShot(rcTypeTimeout+100, this, SLOT(checktimeOuts()));
}

void QGCVehicleConfig::checktimeOuts()
{
    if (rcTypeUpdateRequested > 0)
    {
        if (QGC::groundTimeMilliseconds() - rcTypeUpdateRequested > rcTypeTimeout)
        {
            updateError(tr("Setting remote control timed out - is the system connected?"));
        }
    }
}

void QGCVehicleConfig::updateView()
{
    if (changed)
    {
627 628
        if (rc_mode == RC_MODE_1)
        {
629 630 631 632
            ui->rollSlider->setValue(rcRoll * 50 + 50);
            ui->pitchSlider->setValue(rcThrottle * 100);
            ui->yawSlider->setValue(rcYaw * 50 + 50);
            ui->throttleSlider->setValue(rcPitch * 50 + 50);
633 634 635
        }
        else if (rc_mode == RC_MODE_2)
        {
636 637 638 639
            ui->rollSlider->setValue(rcRoll * 50 + 50);
            ui->pitchSlider->setValue(rcPitch * 50 + 50);
            ui->yawSlider->setValue(rcYaw * 50 + 50);
            ui->throttleSlider->setValue(rcThrottle * 100);
640 641 642
        }
        else if (rc_mode == RC_MODE_3)
        {
643 644 645 646
            ui->rollSlider->setValue(rcYaw * 50 + 50);
            ui->pitchSlider->setValue(rcThrottle * 100);
            ui->yawSlider->setValue(rcRoll * 50 + 50);
            ui->throttleSlider->setValue(rcPitch * 50 + 50);
647 648 649
        }
        else if (rc_mode == RC_MODE_4)
        {
650 651 652 653 654 655
            ui->rollSlider->setValue(rcYaw * 50 + 50);
            ui->pitchSlider->setValue(rcPitch * 50 + 50);
            ui->yawSlider->setValue(rcRoll * 50 + 50);
            ui->throttleSlider->setValue(rcThrottle * 100);
        }

656 657 658 659
        ui->chanLabel->setText(QString("%1/%2").arg(rcValue[rcMapping[0]]).arg(rcRoll, 5, 'f', 2, QChar(' ')));
        ui->chanLabel_2->setText(QString("%1/%2").arg(rcValue[rcMapping[1]]).arg(rcPitch, 5, 'f', 2, QChar(' ')));
        ui->chanLabel_3->setText(QString("%1/%2").arg(rcValue[rcMapping[2]]).arg(rcYaw, 5, 'f', 2, QChar(' ')));
        ui->chanLabel_4->setText(QString("%1/%2").arg(rcValue[rcMapping[3]]).arg(rcThrottle, 5, 'f', 2, QChar(' ')));
660 661

        ui->modeSwitchSlider->setValue(rcMode * 50 + 50);
662
        ui->chanLabel_5->setText(QString("%1/%2").arg(rcValue[rcMapping[4]]).arg(rcMode, 5, 'f', 2, QChar(' ')));
663

664
        if (rcValue[rcMapping[5]] != UINT16_MAX) {
665
            ui->aux1Slider->setValue(rcAux1 * 50 + 50);
666
            ui->chanLabel_6->setText(QString("%1/%2").arg(rcValue[rcMapping[5]]).arg(rcAux1, 5, 'f', 2, QChar(' ')));
667 668 669 670
        } else {
            ui->chanLabel_6->setText(tr("---"));
        }

671
        if (rcValue[rcMapping[6]] != UINT16_MAX) {
672
            ui->aux2Slider->setValue(rcAux2 * 50 + 50);
673
            ui->chanLabel_7->setText(QString("%1/%2").arg(rcValue[rcMapping[6]]).arg(rcAux2, 5, 'f', 2, QChar(' ')));
674 675 676 677
        } else {
            ui->chanLabel_7->setText(tr("---"));
        }

678
        if (rcValue[rcMapping[7]] != UINT16_MAX) {
679
            ui->aux3Slider->setValue(rcAux3 * 50 + 50);
680
            ui->chanLabel_8->setText(QString("%1/%2").arg(rcValue[rcMapping[7]]).arg(rcAux3, 5, 'f', 2, QChar(' ')));
681 682
        } else {
            ui->chanLabel_8->setText(tr("---"));
683 684
        }

685 686 687
        changed = false;
    }
}